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?