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 following code (Facebook SDK 3.1.1) to determine if a user has granted my app Facebook permission. I have found that when Facebook credentials are entered into the iOS 6 Settings app but turned off for my application, the following callback is called twice, first with FBSessionStateClosed but then with FBSessionStateOpen. This is also the same set of callbacks I receive when a user without system-wide credentials already has a token retrieved via OAuth, so I am not sure how to differentiate between these two scenarios.

[FBSession openActiveSessionWithReadPermissions:nil allowLoginUI:YES completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
    if (status == FBSessionStateOpen) {
        // Handle access

    } else if (status == FBSessionStateClosedLoginFailed) {                                          
        [FBSession.activeSession closeAndClearTokenInformation];

        // Handle no access
    }
}];
share|improve this question
We're looking in to this – James Pearce Oct 25 '12 at 15:41
@JamesPearce, what is the latest on this? I am having similar issues in 1.3.2 with permissions revoked via the web while the app is running. – JPK Apr 2 at 22:18

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.