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 need to know when a user has not granted Facebook access to my app during openActiveSessionWithReadPermissions execution. (Not granted meaning the switch is set to 'OFF' under Settings->Facebook->My App.)

Here is the error when not granted:

Error Domain=com.facebook.sdk Code=2 "The operation couldn’t be completed. (com.facebook.sdk error 2.)" UserInfo=0x1fd46780 {com.facebook.sdk:ErrorLoginFailedReason=com.facebook.sdk:ErrorLoginFailedReason}

For comparison, here is the error for no network:

Error Domain=com.facebook.sdk Code=2 "The operation couldn’t be completed. (com.facebook.sdk error 2.)" UserInfo=0x1edf2eb0 {com.facebook.sdk:ErrorLoginFailedReason=com.facebook.sdk:ErrorLoginFailedReason, com.facebook.sdk:ErrorInnerErrorKey=Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x1ed47a20 {NSErrorFailingURLKey=https://api.facebook.com/method/auth.iosauthorizeapp, NSErrorFailingURLStringKey=https://api.facebook.com/method/auth.iosauthorizeapp, NSLocalizedDescription=The Internet connection appears to be offline.}}

Is there a fool-proof way to detect when a user is not granted? Do I just look for error code 2 and one key/value pair in the UserInfo dictionary?

I wish Facebook gave us a BOOL granted like in ACAccountStoreRequestAccessCompletionHandler.

share|improve this question
Have you found a solution? – Peter Warbo Dec 17 '12 at 18:44

1 Answer

@peter-warbo: I didn't find a GOOD solution. I'm using this:

[FBSession openActiveSessionWithReadPermissions:FACEBOOK_READ allowLoginUI:YES 
    completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {

    // find error for not granted
    if(error && error.code == 2) {
        NSDictionary *userInfo = error.userInfo;
        if(userInfo && userInfo.count == 1) {
            [self fallbackLogin];
            return;
        }
    }
    [self sessionStateChanged:session state:state error:error];
}];

- (void)fallbackLogin {

    // use depricated
    [FBSession openActiveSessionWithPermissions:FACEBOOK_READ allowLoginUI:YES
completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
          [self sessionStateChanged:session state:state error:error];
    }];   
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.