I am using the Facebook Graph API, and I was wondering, is there anyway to get a list of all users and their current status in one call?
I basically need the same results as https://graph.facebook.com/me/friends , but with the current status included in each object.
Thanks for any help!
EDIT:
Here are some explanations. if https://graph.facebook.com/me/friends?access_token=... gets me this: (AKA is a list of all my friends)
{ "data": [ { "name": "Foo", "id": "1" }, { "name": "Bar", "id": "2" }, { "name": "Foo Bar", "id": "3" }, { "name": "Bar Foo", "id": "4" } ] }
which URL or FQL will get me: (AKA - a list of all my friends and their statuses)
{ "data": [ { "name": "Foo", "id": "1" "status": "This is my current status!" }, { "name": "Bar", "id": "2" "status": "This is my current status!" }, { "name": "Foo Bar", "id": "3" "status": "This is my current status!" }, { "name": "Bar Foo", "id": "4" "status": "This is my current status!" } ] }
I only want to make one call, because, unlike me, most people have more than 100 friends, and I do not want to make 100+ calls just to receive statuses.
json facebook facebook-graph-api
joe_coolish
source share