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 creating iphone app with facebook graph api. I am able to get list of my friends.. Any body knows how to send friend request to any user ?

and I am also trying to get particular FriendList ,,,

searched this Documentation

But how can I get this FriendList ID ???

/FRIENDLIST_ID

share|improve this question

1 Answer

up vote 1 down vote accepted

The Facebook Graph API doesn't support adding friends.

To get a list of their friend lists, you need read_friendlists extended permission. Then, you can call https://graph.facebook.com/me/friendlists which will return all of their friends lists, with a name and the friend list id you are looking for. You can test this with the graph explorer (check box for read_friendlists permission).

share|improve this answer

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.