无法使用facebook sdk获取IOS的电子邮件地址

时间:2015-07-13 10:12:45

标签: ios iphone facebook

CKContainer

我想获得FB用户的电子邮件地址,但是从上面的代码我只是得到id和名字。 任何人都可以建议我如何获得电子邮件地址?

1 个答案:

答案 0 :(得分:4)

你需要传递参数,无论你想读什么 像

[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{@"fields": @"id, name, link, first_name, last_name, picture.type(large), email, birthday, bio ,location ,friends ,hometown , friendlists"}]
     startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {
         if (!error)
         {
             NSLog(@"resultis:%@",result);
         }
         else
         {
             NSLog(@"Error %@",error);
         }
     }];