I'm implementing the new Facebook iOS SKD 3.1 into my app and am having trouble requesting permissions when the Facebook app is installed on the device. I open the session like this:
[FBSession openActiveSessionWithReadPermissions:@[@"email"] allowLoginUI:allowLoginUI completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
[self sessionStateChanged:session state:state error:error];
}];
This works perfectly in Safari or if I'm already signed in on the Facebook app. But if the Facebook app is installed on the device and the user is not signed in, it prompts them to sign in and then just dumps them back to the home screen of the Facebook app. No request for permissions, no redirect to my app. Once the user is signed in on the Facebook app it works fine the next time I try to open the session (asks for permission and redirects back to my app). If the Facebook app is not installed then the auth flow uses Safari and works fine.
Has anyone else had this issue? I can't figure out why it would work fine in Safari and in the Facebook app if you're already signed in, but break when you need to sign in on the Facebook app.
Thanks
Update: Even when I run one of the samples that came with the Facebook SDK, the Facebook app doesn't redirect back to the app or ask for permission if you need to sign in. It's looking like this may just be an issue with the Facebook app.