I'm trying to record token and expiration date of facebook for not authorize user every time. But tonight I got this error an error like: {"error":{"type":"OAuthException".
First let me explain how and when I record expiration date and token:
In DidLogin:
-(void)fbDidLogin{
[[NSUserDefaults standardUserDefaults]setValue:facebook.accessToken forKey:@"fb_access_token"];
[[NSUserDefaults standardUserDefaults]setObject:facebook.expirationDate forKey:@"fb_expiration_date"];
And in login:
facebook.accessToken = [[NSUserDefaults standardUserDefaults] stringForKey:@"fb_access_token"];
facebook.expirationDate = [[NSUserDefaults standardUserDefaults] objectForKey:@"fb_expiration_date"];
if (![facebook isSessionValid]) {
NSLog(@"session not valid authorize again");
[facebook authorize:_permissions delegate:self];
}
else
{
if([delegate respondsToSelector:@selector(didFB_login)])[delegate didFB_login];
self.loggedin=TRUE;
}
After some NSLog I understood the problem:
My expiration date is
exp date:4001-01-01 00:00:00 +0000
So for ensure I'm not falling in mistake I modified facebook.m:
//FBLoginDialogDelegate
/**
* Set the authToken and expirationDate after login succeed
*/
- (void)fbDialogLogin:(NSString *)token expirationDate:(NSDate *)expirationDate {
self.accessToken = token;
self.expirationDate = expirationDate;
NSLog(@"self.expirationDate:%@",self.expirationDate);
if ([self.sessionDelegate respondsToSelector:@selector(fbDidLogin)]) {
[_sessionDelegate fbDidLogin];
}
}
then forced a new authorize call but the result is still:
self.expirationDate:4001-01-01 00:00:00 +0000
Now the question is: is there a bug in Facebook OAuth? How can I be sure that problem is not in my date saving code?