CKContainer
我想获得FB用户的电子邮件地址,但是从上面的代码我只是得到id和名字。 任何人都可以建议我如何获得电子邮件地址?
答案 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);
}
}];