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 updated my app from the previous Facebook SDK so that people can use native login. Whilst it works for myself and other users, there is a small minority that are experiencing problems.

- (void)openFacebookSession
{
    NSArray *permissions = [[NSArray alloc] initWithObjects:
                            @"publish_stream",
                            nil];
    [FBSession openActiveSessionWithPublishPermissions:permissions defaultAudience:FBSessionDefaultAudienceEveryone allowLoginUI:YES
                                     completionHandler: ^(FBSession *session,FBSessionState state, NSError *error) {
                                         [self sessionStateChanged:session state:state error:error];
                                     }];

}

This will work for most users, but not for some. They will instead encounter an error that suggests that they haven't allowed access in their privacy settings or they haven't logged in in Settings. I've also been told that the app doesn't appear on the list of apps that requires Facebook access. Surely if the user hasn't logged in or not allowed access (but they are logged in and cannot allow access), then it will just launch either the Facebook App or Safari for logging in.

I'm considering disabling the native login until Facebook has updated the SDK. How would I go about doing this?

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.