Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fetch Facebook friend list using SLRequest in ios 6.0

I integrated Facebook in iOS 6.0 as described in this question:

How to integrate Facebook in iOS 6 using SLRequest?

But I am not able to fetch the Facebook friend list using SLRequest. Can anyone know how to do this? I want to implement "Play with Friends" kind of features in my game.

like image 240
NSCry Avatar asked Dec 24 '12 04:12

NSCry


2 Answers

I figured it how it should work.

The below code is working fine for me.

 NSArray *accounts = [accountStore
                               accountsWithAccountType:facebookAccountType];
          ACAccount *facebookAccount = [accounts lastObject];
          NSString *acessToken = [NSString stringWithFormat:@"%@",facebookAccount.credential.oauthToken];
          NSDictionary *parameters = @{@"access_token": acessToken};
          NSURL *feedURL = [NSURL URLWithString:@"https://graph.facebook.com/me/friends"];
          SLRequest *feedRequest = [SLRequest
                                    requestForServiceType:SLServiceTypeFacebook
                                    requestMethod:SLRequestMethodGET
                                    URL:feedURL
                                    parameters:parameters];
          feedRequest.account = facebookAccount;
          [feedRequest performRequestWithHandler:^(NSData *responseData,
                                                   NSHTTPURLResponse *urlResponse, NSError *error)
           {
               NSLog(@"%@",[[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]);
           }];
      }
      else
      {
          // Handle Failure
      }
like image 173
NSCry Avatar answered Oct 18 '22 02:10

NSCry


-(void)getFacebookFriendsList
{
    if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
    {
        ACAccountStore *store = [[ACAccountStore alloc] init];

        ACAccountType *facebookTypeAccount = [store accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
        //Replace with your Facebook.com app ID
        NSDictionary *options = @{ACFacebookAppIdKey:kFacebookAppID, ACFacebookPermissionsKey:@[@"email", @"read_friendlists"],
                                  ACFacebookAudienceKey:ACFacebookAudienceFriends};

        [store requestAccessToAccountsWithType:facebookTypeAccount
                                       options:options
                                    completion:^(BOOL granted, NSError *error){

                                        if(granted)
                                        {
                                            NSArray *accounts = [store accountsWithAccountType:facebookTypeAccount];
                                            ACAccount *facebookAccount = [accounts lastObject];

                                            NSURL *meurl = [NSURL URLWithString:@"https://graph.facebook.com/me"];
                                            SLRequest *merequest = [SLRequest requestForServiceType:SLServiceTypeFacebook
                                                                                      requestMethod:SLRequestMethodGET
                                                                                                URL:meurl
                                                                                         parameters:nil];
                                            merequest.account = facebookAccount;

                                            NSURL *requestURL = [NSURL URLWithString:@"https://graph.facebook.com/me/friends"];

                                            SLRequest *request = [SLRequest requestForServiceType:SLServiceTypeFacebook
                                                                                    requestMethod:SLRequestMethodGET
                                                                                              URL:requestURL parameters:@{@"fields":@"id, name, email, picture, first_name, last_name, gender, installed"}];
                                            request.account = facebookAccount;
                                            [request performRequestWithHandler:^(NSData *data,
                                                                                 NSHTTPURLResponse *response,
                                                                                 NSError *error) {
                                                if(!error)
                                                {
                                                    NSDictionary *list =[NSJSONSerialization JSONObjectWithData:data
                                                                                                        options:kNilOptions
                                                                                                          error:&error];
                                                    if([list objectForKey:@"error"] != nil)
                                                    {
                                                        // if error occured e.g. Invalid Auth etc.
                                                    }
                                                    else
                                                    {
                                                        [self.arrayFriendsList removeAllObjects];

                                                        NSArray *dictFbFriend = [list objectForKey:@"data"];

                                                        for (NSDictionary *dict in dictFbFriend)
                                                        {
                                                            NSDictionary *pictureDataDict = [[dict objectForKey:@"picture"] objectForKey:@"data"];

                                                            Contacts *objContact = [[Contacts alloc] initWithName:[dict objectForKey:@"name"]
                                                                                                         andEmail:nil
                                                                                                     andFirstName:[dict objectForKey:@"first_name"]
                                                                                                      andLastName:[dict objectForKey:@"last_name"]
                                                                                                        andGender:[dict objectForKey:@"gender"] andPhotoPath:[pictureDataDict objectForKey:@"url"]
                                                                                                   andIsInstalled:[dict objectForKey:@"installed"] ? [[dict objectForKey:@"installed"] boolValue] : NO
                                                                                                    andFacebookId:[dict objectForKey:@"id"]
                                                                                    ];

                                                            [self.arrayFriendsList addObject:objContact];
                                                            objContact = nil;
                                                        }

                                                        NSSortDescriptor *descriptor=[[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
                                                        NSArray *descriptors=[NSArray arrayWithObject: descriptor];
                                                        self.arrayFriendsList = (NSMutableArray *)[self.arrayFriendsList  sortedArrayUsingDescriptors:descriptors];

                                                    }
                                                }
                                                else
                                                {
                                                    NSLog(@"Error%@", error);

                                                    //                                                    [progressHUD hide:YES];
                                                }

                                                dispatch_async(dispatch_get_main_queue(), ^{
                                                    [progressHUD hide:YES];
                                                    [self.tblFriendsList reloadData];
                                                });
                                            }];
                                        }
                                        else
                                        {
                                            NSLog(@"Grant Error:%@", error);

                                            [progressHUD hide:YES];

                                            UIAlertView *alertView = [[UIAlertView alloc]
                                                                      initWithTitle:@"Error"
                                                                      message:@"You need to set up Facebook account on the Settings App."
                                                                      delegate:self
                                                                      cancelButtonTitle:@"OK"
                                                                      otherButtonTitles:nil];
                                            [alertView show];
                                        }
                                    }];
    }
    else
    {
        [progressHUD hide:YES];

        UIAlertView *alertView = [[UIAlertView alloc]
                                  initWithTitle:@"Error"
                                  message:@"You need to set up Facebook account on the Settings App."
                                  delegate:self
                                  cancelButtonTitle:@"OK"
                                  otherButtonTitles:nil];
        [alertView show];
    }
}
like image 44
Coder_A_D Avatar answered Oct 18 '22 00:10

Coder_A_D