I went through the below link and wondering whether it is still working? Help needed - fql query in facebook api
I am trying to get the status messages of the currently logged in user and the user's friends. I used the below query. fql?q=SELECT status_id, message FROM status WHERE uid in(SELECT uid FROM user WHERE uid = me() OR uid IN (SELECT uid2 FROM friend WHERE uid1 = me()))
The above query only returns me the last updated status, but what I am looking for is all the statuses.
When I query on only one user it returns me all the statuses. For Ex fql?q=SELECT status_id, message FROM status WHERE uid in(XXX)
I did also go through this Facebook FQL to get all status messages from an app post and added the limit, but still it doesnot work.
Am I missing anything or is that a bug? Can someone guide me in the right direction?