I am using the following query to retrieve a particular Facebook users wall information:
https://graph.facebook.com/MY_USER_ID/feed?access_token=MY_ACCESS_TOKEN
Now from the above query, I need to list information which are after a particular updated_time. I am having the date in UTC format. say, 1333620660
Can you please suggest how to do so?
Thanks.
You can filter feeds by using
sinceparameter.https://graph.facebook.com/MY_USER_ID/feed?access_token=MY_ACCESS_TOKEN&since=1333620660
Edit (after comment):
Same way, you can use
untilparameterhttps://graph.facebook.com/MY_USER_ID/feed?access_token=MY_ACCESS_TOKEN&since=1333620660&until=1333620890
Refer (the paging section):
http://developers.facebook.com/docs/reference/api/