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
}
}