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'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.

share|improve this question
1  
See the same report here, this is a known issue. – C Abernathy Sep 29 '12 at 0:36

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.