7

我在我的 iOS 应用上使用 Facebook 的 iOS SDK 3.7 来处理登录。当我请求发布权限时,看起来有效期是从登录之日起大约 2 个月。

我知道我可以使用来检查到期日期,[FBSession activeSession].accessTokenData.expirationDate但是会发生什么,以及令牌到期时如何处理令牌?

我又跑[FBSession openActiveSessionWithReadPermissions:allowLoginUI:completionHandler:];了吗?

4

1 回答 1

0

我这样做了,FB 会自动重新创建会话。如果 FB 更改了使用条款或其他内容,则会向用户显示登录对话框。

// call this before any calls to FB api
- (void)openSession
{
 if(FBSession.activeSession.state != FBSessionStateOpen)
{

    [FBSession openActiveSessionWithPublishPermissions:@[FB_PUBLISH_ACTIONS_PREMISSION]
                                       defaultAudience:FBSessionDefaultAudienceFriends
                                          allowLoginUI:NO
                                     completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
                    if(!error && session.isOpen)
                    {
                    }
                    else
                    {
                        _lastError = error;
                        // handle the error
                    }
                       // here, you can handle the session state changes in switch case or
                      //something else
                    [self session:session
                  hasChangedState:status
                        withError:error];

                }];
        }
}
于 2014-01-28T10:49:10.870 回答