在SDK 3.2中无法保存Facebook accessToken

时间:2013-03-07 08:29:56

标签: ios objective-c facebook facebook-access-token

我一直在使用旧版Facebook SDK并将accessTokenexpirationDate保存在NSUserDefaults内。但现在在新的Facebook SDK 3.2中有一个名为FBAccessTokenData的新类,我可以使用以下命令从那里获取accessToken:

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

我的问题是当我重新启动我的应用并再次单击Facebook按钮时,它会去Facebook寻求新的令牌,尽管我在3分钟前使用该应用程序,登录Facebook并获得新令牌。因此令牌尚未保存。

我尝试将新的accessToken保存到[FBSession activeSession],但accessTokenexpirationDate只读属性。

我现在已经阅读了几次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];
}

提前致谢!

1 个答案:

答案 0 :(得分:5)

所以我在搜索更多内容后找到答案,如果有人对新Facebook SDK 3.2 accessToken有疑问,请查看此link。你会找到你想要的东西。

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

享受! :)