我一直在使用旧的 Facebook SDK 并将 andaccessToken
保存expirationDate
在NSUserDefaults
. 但是现在在 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];
}
提前致谢!