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 can open a FB session, then I close it, however the next time i hit this code, it skips right by the user login screen (io5) and already has me logged in. How do I make sure that I re/initiate the FB login screen each time? I tried to close the session before I even opened it, but that did not work either.

[self closeFacebookSession];  // close the session so we should get login screen, but we do not!

 NSArray *permissions = [[NSArray alloc] initWithObjects:
                            @"email",
                            nil];

[FBSession openActiveSessionWithReadPermissions:permissions
                                           allowLoginUI:YES
                                      completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
                                          [self sessionStateChanged:session state:state error:error];
                                      }];
}

- (void)closeFacebookSession {
    [FBSession.activeSession closeAndClearTokenInformation];
}
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.