Last Updated: February 25, 2016
·
811
· filosottile

Get latest friends' FB status updates

Last night I got fed up by the number of soccer-related statuses on my timeline and decided to discover how much they were in percentage.

So, here is the FQL query on the status table to get all your friends' updates since a specified time.

SELECT status_id, uid, time, message FROM status WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND time > 1351970000

It needs the friens_status permission.

You can try it (or use it only one time, like I did) on that beautiful thing that is the FB Graph API Explorer.