没有得到电子邮件和公众简介使用Facebook 4.4.0 SDK
我目前正在使用Facebook SDK 4.4.0。 在4.4.0版本之前,在4.3.0版本中,我们使用下面的代码获得了email,public_profile
NSArray *arrFBPermission = [[NSArray alloc]initWithObjects:@"email",@"public_profile", nil]; [loginUsingFB logInWithReadPermissions:arrFBPermission handler:^(FBSDKLoginManagerLoginResult *result, NSError *error){ [[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:nil] startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error){ if (!error){ NSString *fnm = [result valueForKey:@"first_name"]; NSString *lnm = [result valueForKey:@"last_name"]; } else{ Nslog("%@", error localizedDescription); } }]; }
现在在新的SDK(即4.4.0),我没有得到这些值。 为什么? 我想从Facebook的电子邮件,名字,姓氏,身份证。
使用Facebook 4.4 SDK有一些细微的变化。 您必须通过Facebook帐户所需的FBSDKGraphRequest
请求参数。
在你的代码中,参数是nil
的:
使用如下参数更新您的代码:
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{@"fields": @"id, name, link, first_name, last_name, picture.type(large), email, birthday, bio ,location , friends ,hometown , friendlists"}]
如果你想使用自定义buttonloginFacebook,那么你可以使用完整的代码如下:
- (IBAction)btnFacebookPressed:(id)sender { FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init]; login.loginBehavior = FBSDKLoginBehaviorBrowser; [login logInWithReadPermissions:@[@"email"] handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) { if (error) { // Process error } else if (result.isCancelled) { // Handle cancellations } else { if ([result.grantedPermissions containsObject:@"email"]) { NSLog(@"result is:%@",result); [self fetchUserInfo]; [login logOut]; // Only If you don't want to save the session for current app } } }]; } -(void)fetchUserInfo { if ([FBSDKAccessToken currentAccessToken]) { NSLog(@"Token is available : %@",[[FBSDKAccessToken currentAccessToken]tokenString]); [[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{@"fields": @"id, name, link, first_name, last_name, picture.type(large), email"}] startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { if (!error) { NSLog(@"resultis:%@",result); } else { NSLog(@"Error %@",error); } }]; } }
我希望它会为你工作。
- Facebook分享对话框:权限错误 – OAuth“Facebook平台”“insufficient_scope(#200)权限错误”
- fbDidLogin从未调用过(facebook-ios-sdk)
- Facebooklogin不能返回到应用程序迁移到Swift 3
- 无法获得user_events脸书的权限
- Facebooklogin – iOS 9 – 没有Safari
- 将Facebook应用程序链接链接到iTunes下载页面
- 如何在startWithGraphPath Facebook iOS中标记好友
- Facebook应用程序请求不显示在iOS设备上?
- 在iOS iOS SDK v4.0中可靠地检查应用程序启动时的活动会话