Getting username and profile picture from Facebook iOS 7

后端 未结 7 1134
悲&欢浪女
悲&欢浪女 2020-12-01 04:45

I have read a lot of tutorials about getting information from Facebook, but I have failed so far. I just want to get username and profile picture from Facebook.



        
7条回答
  •  天命终不由人
    2020-12-01 05:04

    if ([FBSDKAccessToken currentAccessToken]) {
        [[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{ @"fields" : @"id,name,picture.width(100).height(100)"}]startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {
            if (!error) {
                NSString *nameOfLoginUser = [result valueForKey:@"name"];
                NSString *imageStringOfLoginUser = [[[result valueForKey:@"picture"] valueForKey:@"data"] valueForKey:@"url"];
                NSURL *url = [[NSURL alloc] initWithURL: imageStringOfLoginUser];
                [self.imageView setImageWithURL:url placeholderImage: nil];
            }
        }];
    }
    

提交回复
热议问题