Good day!
I am using Facebook graph API to retrieve Facebook users Profile feed (Wall) information.
My query will be:
https://graph.facebook.com/USER_ID/feed?access_token=ACCESS_TOKEN_OF_MY_FB_APPLICATION
Through this, I was able to retrieve users wall information with created_time and updated_time.
I found from http://developers.facebook.com/docs/reference/api/, that we can filter information by created_time using since and until parameters.
Is there any way through which I can filter users Profile information by updated_time?
Thank you.
It’s possible using FQL.
For example, modifying an example on the Facebook Developers site, you can retrieve the current user’s posts to the her wall/feed updated before December 30, 2009 at 12am EST like so:
To my knowledge you can’t filter by updated_time using the Graph API.