I want to retrieve the user’s friends list from Facebook. Any sample code will be highly appreciated.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
after login, do this-
[facebook requestWithGraphPath:@”me/friends” andDelegate:self];
//the friends data should be parsed in this delegate method.
here, i added all the friends uids to an array. same way u can get names and perform any using GraphApi .
Hope it helped u..