I'm using facebook ios SDK 3.1 on my iphone app.
Every time the user login in the app, I send the new token to my backend:
- (void)sessionStateChanged:(FBSession *)session
state:(FBSessionState) state
error:(NSError *)error
{
switch (state) {
case FBSessionStateOpen: {
// NSLog(@"Facebook Open: %@",session.accessToken);
NSMutableDictionary * params = [[NSMutableDictionary alloc] init];
[params setObject:session.accessToken forKey:@"token"];
WHInterface * api = [[WHInterface alloc] init];
[api setDelegate:self];
[api setCallback:@selector(processedToken:)];
[api register_profile:params];
break;
}
The problem is that when I try to validate the token on the backend, this error shows up:
FbGraph::InvalidToken: OAuthException ::
Error validating access token: The session is invalid because the user logged out.
Any ideas?
Thanks in advance!