Very early in designing a concept and I was wondering whether it is possible usin开发者_如何学JAVAg fb api to get a friends history of status updates? Or even a status update from a particular date in the past?
Hunting the documentation I am yet to see anything such as this so appreciate any guidance!
Thanks in advance
In addition to OffBySome's answer, you could use FQL, or more specifically, the stream
table. This will let you query by dates, and filter more specifically, provided you have enough conditions to make the query indexable.
https://graph.facebook.com/friendID/statuses will provide you with all of a friends statuses. You can set limit querystring parameter to get more, and use "prev" and "next" elements to navigate back and forth. Try exploring on the Facebook Graph Explorer.
精彩评论