Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
improve your accept rate by accepting best answer of your previously Asked Questions..!!!,then you'll get good response....!!!! – Kamarshad Nov 14 '12 at 16:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.