I’m currently making an application that will read some post on my wall.
Problem is I keep on getting this error
Fatal error: Uncaught Exception: 604: Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables linked from http://developers.facebook.com/docs/reference/fql thrown in \application\libraries\base_facebook.php on line 1238
I already have those permission in the first place, I even added some other permission on my App settings. read_stream offline_access read_insights
AppId, secret and access_token are all set.
Update: Now the API returns a different error when I changed the query to this
$fql = "SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id = me() AND created_time > 1346277600 LIMIT 50";
Update:
I now get this error
Fatal error: Uncaught Exception: 102: Requires user session thrown in \application\libraries\base_facebook.php on line 1238
I simply forgot to put the
access_tokenat the facebook->api call