FB Graph API: Any way to search through all posts?
Is there any way to search through the entire database of posts posted by a specific user (friend of logged-in user or logged-in user). According to the Graph API (http://developers.facebook.com/docs/reference/api) one can search through a News Feed or Profile feed (Wall), but none of which refer to posts开发者_JS百科 written a year ago.
Best regards :)
You can get and search your own posts by querying the stream
FQL table:
You can get two types of data when you query this table:
* You can get public data (viewable to anyone on Facebook) without needing an extended permission.
* You can get more data if you prompt the user for the read_stream extended permission.
How to search it depends on your needs and well documented in the link above.
精彩评论