I'm implementing the new Facebook SDK and everything is seems in order except for after logging in. When the app takes me to Safari and I give it the 'Okay', it returns to the app and reports success:
- (void)sessionStateChanged:(FBSession *)session
state:(FBSessionState) state
error:(NSError *)error
{
switch (state) {
case FBSessionStateOpen: {
NSLog(@"success");
}
.
.
.
}
But when I check the status immediately after:
if (FBSession.activeSession.state == FBSessionStateCreatedTokenLoaded) {
NSLog(@"Logged in");
} else {
NSLog(@"Not logged in");
}
I'm given: Not logged in. I'm not getting any error messages. It seems like the token expires straight after it is issued. Would like some guidance on how to tackle this. This app was created from as a new project, but is an update for an existing app. However, the old app is not on my device when running the new one. Just thought I'd mention that should it be important.