ios – ACAccountCredential为oauthToken返回null

ios – ACAccountCredential为oauthToken返回null,第1张

概述我通过以下方式访问用户的Facebook: [accStore requestAccessToAccountsWithType:fbAccountType options:options completion:^(BOOL grant 我通过以下方式访问用户的Facebook:

[accStore requestAccesstoAccountsWithType:fbAccountType                                           options:options                                        completion:^(BOol granted,NSError *error) {                                            if (granted) {                                                // If access granted,then get the Facebook account info                                                NSArray *accounts = [accStore                                                                     accountsWithAccountType:fbAccountType];                                                ACAccount *acc = [accounts lastObject];                                                // Get the access token,Could be used in other scenarios                                                ACAccountCredential *fbCredential = [acc credential];                                                Nsstring *accesstoken = [fbCredential oauthToken];                                                NSLog(@"Facebook Access Token: %@",accesstoken);                                                // Add code here to make an API request using the SLRequest class                                            } else {                                                NSLog(@"Access not granted");                                            }                                        }];

打印出:

Facebook Access Token: (null)

我被授予访问权限,但令牌为空.我究竟做错了什么?

谢谢

解决方法 我通过续订凭证解决了这个问题.也就是说,在授予对FB的访问权限后,但在ACAccountCredential的oauthToken返回nil的情况下,我们只需调用ACAccountStore的renewCredentialsForAccount.续订凭证,之后令牌有效! 总结

以上是内存溢出为你收集整理的ios – ACAccountCredential为oauthToken返回null全部内容,希望文章能够帮你解决ios – ACAccountCredential为oauthToken返回null所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1054099.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存