I have an app that displays a login page first. When the user clicks the login page this method is called
- (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {
// Ask for permissions for publishing, getting info about uploaded
// custom photos.
NSArray *permissions = [NSArray arrayWithObjects:
@"publish_actions",
@"user_photos",
nil];
return [FBSession openActiveSessionWithPermissions:permissions
allowLoginUI:allowLoginUI
completionHandler:^(FBSession *session,
FBSessionState state,
NSError *error) {
[self sessionStateChanged:session
state:state
error:error];
}];
I'm passing in a YES and it's creating an activeSession without showing me a login screen for some reason.
I'm not logged into Facebook on the simulator! So it's creating an active session without credentials somehow.
How do I get it to show me the login screen? What am i doing wrong here?