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

share|improve this question

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.