我正在开发一个应用程序,其中我已经实现了Facebook,我想在我的应用程序中获取Facebook用户个人资料图片和生日。我搜索了网,但所有教程都是2或3年。
我已经设置了许可..
loginButton.readPermissions=@[@"public_profile", @"email", @"user_friends",@"user_birthday",@"user_location"];
并使用代码获取
if ([FBSDKAccessToken currentAccessToken]) {
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:nil]
startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {
if (!error) {
NSLog(@"fetched user:%@", result);
}
但输出是
fetched user:{
email = "XYZ@gmail.com";
"first_name" = XYZ;
gender = male;
id = xxxxxxxxxxx;
"last_name" = ABC;
link = "https://www.facebook.com/app_scoped_user_id/xxxxxxxxx/";
locale = "en_GB";
name = "XYZ ABC";
timezone = "5.5";
"updated_time" = "2015-04-08T06:57:20+0000";
verified = 1;
}
为什么我没有获得生日和个人资料图片信息?
答案 0 :(得分:0)
Ashish提到,initWithGraphPath:@"me" parameters:nil
除非通过initWithGraphPath:@"me" parameters:@{@"fields": @"picture, birthday"}
但请注意,当参数不是nil时,它只会返回请求的字段,因此您不会获得名称,性别等,除非您明确地将它们添加到参数中