[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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)