1

我一直在使用旧的 Facebook SDK 并将 andaccessToken保存expirationDateNSUserDefaults. 但是现在在 newFacebook SDK 3.2中有一个新类FBAccessTokenData,我可以使用以下方法从那里获取 accessToken:

[FBSession activeSession].accessTokenData.accessToken
[FBSession activeSession].accessTokenData.expirationDate

我的问题是当我重新启动我的应用程序并再次单击 Facebook 按钮时,尽管我在 3 分钟前使用了该应用程序,但它会转到 Facebook 请求新令牌,登录 Facebook 并获得新令牌。所以令牌没有被保存。

我正在尝试将新的保存accessToken[FBSession activeSession]accessToken并且expirationDate只读属性。

我已经阅读了几次 Facebook SDK 文档,搜索了 stackOverflow 和网络,但仍然不知道如何做到这一点。

这是我的代码:

- (void)sessionStateChanged:(FBSession *)session state:(FBSessionState) state error:(NSError *)error
{
    switch (state)
    {
        case FBSessionStateOpen:
        {
            // This is how i'm trying to save the token, like the old Facebook SDK.
            NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
            [defaults setObject:[FBSession activeSession].accessTokenData.accessToken forKey:@"FBAccessTokenKey"];
            [defaults setObject:[FBSession activeSession].accessTokenData.expirationDate forKey:@"FBExpirationDateKey"];
            [defaults synchronize];

            NSLog(@"FB: Session is open!");
        }
            break;

        case FBSessionStateClosed:
        case FBSessionStateClosedLoginFailed:
        {
            NSLog(@"FB: Session is closed or login failed");

            [self closeSession];
        }
            break;

        default:
            break;
    }

    [[NSNotificationCenter defaultCenter] postNotificationName:FBSessionStateChangedNotification
                                                        object:session];

    if (error)
    {
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error"
                                                            message:error.localizedDescription
                                                           delegate:nil
                                                  cancelButtonTitle:@"OK"
                                                  otherButtonTitles:nil];
        [alertView show];
    }
}


- (void)openSession
{
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

    [FBSession openActiveSessionWithReadPermissions:nil allowLoginUI:YES completionHandler:
     ^(FBSession *session, FBSessionState state, NSError *error)
    {
         [self sessionStateChanged:session state:state error:error];
    }];
}

- (void)closeSession
{
    [FBSession.activeSession closeAndClearTokenInformation];
}

提前致谢!

4

1 回答 1

5

所以我在搜索更多后找到了答案,如果有人对新的有问题Facebook SDK 3.2 accessToken,请查看此链接。你会找到你正在寻找的东西。

基本上,您创建一个处理令牌保存和加载的类。比你将它保存到本地 plist 文件中 - 非常简单。

享受!:)

于 2013-03-07T09:39:02.940 回答