• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - FBSDKAccessToken currentAccessToken 为 nil

[复制链接]
菜鸟教程小白 发表于 2022-12-12 18:25:29 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

代码:

self.accountStore = [[ACAccountStore alloc]init];
ACAccountType *FBaccountType= [self.accountStore
                               accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];

NSString *appID = @"356775877779749"; //The app ID issued by Facebook
NSDictionary *dictFB = [NSDictionary dictionaryWithObjectsAndKeys:
                        appID, ACFacebookAppIdKey,
                        @[@"email"], ACFacebookPermissionsKey,
                        nil];

[self.accountStore requestAccessToAccountsWithType:FBaccountType options:dictFB completion:
 ^(BOOL granted, NSError *e) {
     if (granted)
     {
         NSArray *accounts = [self.accountStore accountsWithAccountType:FBaccountType];
         //it will always be the last object with single sign on
         self.facebookAccount = [accounts lastObject];


         ACAccountCredential *facebookCredential = [self.facebookAccount credential];
         NSString *accessToken = [facebookCredential oauthToken];
         NSLog(@"Successfully logged in. Access Token: %@", accessToken);


         FBSDKAccessToken* AccessToken = [FBSDKAccessToken currentAccessToken];
         NSLog(@"%@", AccessToken);
         [self newFacebookLogin];
     } else {
         //Failed
         NSLog(@"error getting permission: %@",e);
     }
 }];

我使用上面的代码登录。出于某种原因,NSString *accessToken = [facebookCredential oauthToken] 正确存储了访问 token ,但 FBSDKAccessToken* AccessToken = [FBSDKAccessToken currentAccessToken] 没有。

有什么方法可以将 NSString *accessToken 转换为 FBSDKAccessToken



Best Answer-推荐答案


我遇到了类似的问题,这是由于我没有在 FBSDKProfile 上设置 enableUpdatesOnAccessTokenChange。不知道为什么它默认不这样做。

[FBSDKProfile enableUpdatesOnAccessTokenChange:TRUE];

或者对于 swift

FBSDKProfile.enableUpdatesOnAccessTokenChange(true)

关于ios - FBSDKAccessToken currentAccessToken 为 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35171416/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap