Reputation: 113
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.
Upvotes: 1
Views: 2056
Reputation: 28480
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:
SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id = me()
AND updated_time < 1262196000 LIMIT 50
To my knowledge you can't filter by updated_time using the Graph API.
Upvotes: 2