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 use the latest Facebook SDK (3.1.1).

I wrote a function in my AppDelegate that checks the current session and creates or opens a session according to the state.

The second conditions always return NO and go to show login screen.

I don't understand way.

AppDelegate method:

if (facebook.isOpen == NO)
{
   facebook = [[FBSession alloc] initWithPermissions:permission];

    if (facebook.state == FBSessionStateCreatedTokenLoaded)
    {
        [facebook openWithCompletionHandler:^(FBSession *session,FBSessionState status,NSError *error)
        {
            // load user details
        }];
    }
    else
    {
        // show login screen
    }
}
share|improve this question

1 Answer

up vote 1 down vote accepted

There is a property access token in the FbSession class.

Use that string in order to check the login status.

If you are getting null in that string it means your session is expired but if you are getting some value in that is means you are still login in the app and you can do what ever you want.

Regards

Abhishek Goyal

share|improve this answer
The facebook.accessToken always nil too. – zeevblu Jan 1 at 10:03
can you share the code how you are getting the Facebook access token? – Abhishek Jan 1 at 10:06
I found the problem - I tried to init session twice with different permissions. Thanks. – zeevblu Jan 1 at 13:27

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.