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 currently develop an app in which i need to add friend's from facebook friend list using new facebook graph API.

This is my code:

 _permissions = [[NSArray arrayWithObjects:
                         @"read_stream", @"publish_stream", @"offline_access",@"read_friendlists",nil] retain];

[facebook authorize:_permissions];

facebook = [[Facebook alloc] initWithAppId:@"fbid" andDelegate:self];


[facebook requestWithGraphPath:@"me" andDelegate:self];
[facebook requestWithGraphPath:@"me/friends" andDelegate:self];
NSMutableDictionary*params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"4",@"uids", @"name", @"fields", nil];
[facebook requestWithMethodName:@"user.getInfo" andParams:params andHttpMethod:@"GET" andDelegate:self];

but every time it give me error in console
please help me...

share|improve this question
What are you trying to accomplish? you are sending 3 requests and I got a little bit confused reading the code. Make sure your parameters are well defined, you can try pasting your query into your browser to test for results. What is the error you are getting in the console? – Lio Aug 17 '11 at 18:07
i am first time using this new graph api. from the sample code of video tutorial on facebook graph api, I write this code for my application. when i run this app i got the error like this ... Failed with error: The operation couldn’t be completed. (facebookErrDomain error 10000.) – NSNull Aug 17 '11 at 18:33
actually i need only facebook friend's name list – NSNull Aug 17 '11 at 18:35

3 Answers

up vote 3 down vote accepted

Here you have a code sample that fetches the friends info:

        [facebook requestWithGraphPath:@"me/friends" 
                             andParams:[ NSDictionary dictionaryWithObjectsAndKeys:@"picture,id,name,link,gender,last_name,first_name",@"fields",nil]
                           andDelegate:self];

Remember to:

  1. implement the proper delegate methods
  2. You must call authorize before fetching the friends information. This way the user will be able to login first.

I hope this helps, cheers

share|improve this answer
thax it's working – NSNull Aug 17 '11 at 19:08
4  
in the most recent Facebook iOS SDK, "andParams:" must be passed into an NSMutableDictionary instead. – Wayne Liu May 9 '12 at 8:39

I think you should swap. Otherwise it's not working.

this is correct way:

 facebook = [[Facebook alloc] initWithAppId:@"fbid" andDelegate:self];
 [facebook authorize:_permissions];
share|improve this answer
   $friend_list =json_decode(file_get_contents("https://graph.facebook.com/$uid/friendlists?access_token=$access_token"),true);
   $friend_list_array = $friend_list['data'];
    foreach($friend_list_array as $key=> $value){
$inner_array_name[$value['id']][]=$value['name'];
        }
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.