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 am using the facebook SDK in my iOS app. In general, I have had had good success. I have set up my URLScheme in Info.plist and implemented - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation.

I invoke facebook like so:

NSArray *permissions = [NSArray arrayWithObjects:@"email", @"user_about_me", nil];
    [FBSession openActiveSessionWithReadPermissions:permissions
                                       allowLoginUI:YES
                                  completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
                                  [self facebookSessionStateChanged:session state:state error:error isSigningIn:isSigningIn];
                              }];

The following scenario works great. 1.) In the simulator, call FBSession openActiveSession... Facebook opens Safari, I sign into facebook, approve my app, facebook correctly redirect back to my app and my app's openURL method is invoked.

2.) On a device with facebook app installed and a user logged into the facebook app. My app invokes FBSession openActiveSession... Facebook app opens, I approve my app, facebook correctly redirect back to my app and my app's openURL method is invoked.

Now for the case that does not work: On a device with facebook app installed but a user is not logged into the facebook app. My app invokes FBSession openActiveSession... Facebook app opens, I log into the facebook app, the facebook app just take me to my news feed instead of showing me the page to approve access for my app. Facebook never redirects back to my app.

Has anyone else seen this strange behavior with Facebook SSO when the facebook app is installed but a user is not signed in?

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.