swift – IOS Facebook SDK:尽管授予许可,登录也不会返回电子邮件

我正在通过Facebook sdk获取信息,但到目前为止,我只得到用户的身份和名称,尽管我确信有一个电子邮件可用,因为它是我的帐户.我一直在看几个答案,但是迄今为止还没有人解决我的问题.
我做错了什么,为什么我要求几个权限不会返回更多的数据?

这是我的代码:

fbLoginManager.logInWithReadPermissions(["public_profile","email","user_friends","user_about_me","user_birthday"],handler: { (result,error) -> Void in
        if ((error) != nil)
        {
            // Process error
            println("There were an error: \(error)")
        }
        else if result.isCancelled {
            // Handle cancellations
            fbLoginManager.logOut()
        }
        else {
            var fbloginresult : FBSDKLoginManagerLoginResult = result
            if(fbloginresult.grantedPermissions.contains("email"))
            {
                println(fbloginresult)
                self.returnUserData()
            }
        }
    })

并获取用户数据的功能:

func returnUserData()
{
    let graphRequest : FBSDKGraphRequest = FBSDKGraphRequest(graphPath: "me",parameters: nil)
    graphRequest.startWithCompletionHandler({ (connection,result,error) -> Void in

        if ((error) != nil)
        {
            // Process error
            println("Error: \(error)")
        }
        else
        {
            println("fetched user: \(result)")

            if let userName : NSString = result.valueForKey("name") as? NSString {
                println("User Name is: \(userName)")
            }
            if let userEmail : NSString = result.valueForKey("email") as? NSString {
                println("User Email is: \(userEmail)")
            }
        }
    })
}

哪个返回:

fetched user: {
id = 55555555;
name = "Kali Aney";
}
User Name is: Kali Aney
由于Graph-API版本2.4(Pod版本4.4.0),Facebook Graph API破坏了它的向后兼容性(以默认方式使用).

FB Graph-API 2.4不返回用户的所有默认字段

要解决这个问题,您可以使用明确的图形版本2.3:

[FBSDKGraphRequest alloc] initWithGraphPath:@“me”参数:nil tokenString:[FBSDKAccessToken currentAccessToken] .tokenString版本:@“v2.3”HTTPMethod:nil]

在这种情况下,FB保证v2.3将至少在现在2年后提供.
https://developers.facebook.com/docs/graph-api/overview

The Graph API has multiple versions available to access at any one
time. Each version contains a set ofcore fields and edge operations.
We make a guarantee that those core APIs will be available and
un-modified in that version for at least 2 years from release. The
platform changelog can tell you which versions are currently
available.

要么

您可以通过询问您感兴趣的特定字段来使用新的Graph-API(v2.4):

[[FBSDKGraphRequest alloc] initWithGraphPath:@“me”参数:@ {@“fields”:@“email,name”}]

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...