Reputation: 113
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.
Upvotes: 0
Views: 147
Reputation: 29005
You can filter feeds by using since
parameter.
https://graph.facebook.com/MY_USER_ID/feed?access_token=MY_ACCESS_TOKEN&since=1333620660
Edit (after comment):
Same way, you can use until
parameter
Refer (the paging section): http://developers.facebook.com/docs/reference/api/
Upvotes: 1