Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am quite sure it is supposed to work but can't get it right. I am trying to retrieve my friends belonging to specific list (type=close_friends). I am able to retrieve my lists via https://graph.facebook.com/me/friendlists But i need the actual friends associated with each list. I would expect it to be something like: https://graph.facebook.com/me/friends?fields=????

share|improve this question

1 Answer

up vote 0 down vote accepted

FriendList is a Graph API object supporting a members connection.

share|improve this answer
Tnx, although it will required at least two requests (one to get the lists and one to retrieve the members). I think I am going to use FQL, something like: SELECT uid FROM friendlist_member WHERE flid IN (SELECT flid FROM friendlist WHERE owner=me() AND type="close_friends") – Mark Shteiman Apr 13 '12 at 7:59
@MarkShteiman can you accept my answer? – Richard Barnett Apr 19 '12 at 5:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.