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.

Is it possible to catch event 'CancelButtonPressed' in Facebook App through facebook-ios-sdk authorization flow?

I use pretty old version of Facebook SDK for IOS and open session like this:

[_facebookSession openWithBehavior:FBSessionLoginBehaviorWithNoFallbackToWebView
                             completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
                NSLog(@"this is FBSession State: %d",status);
                NSLog(@"this is NSError: %@",error);
                NSLog(@"create new session with permissions: %@",_facebookSession.permissions);
            }];

I saw this question, but maybe something changed in Facebook IOS SDK?

Maybe somebody knows answer or good solution?

Thanks for help!

EDIT:

if ([_facebookSession state]==FBSessionStateCreatedOpening){
    // if we call FBApp, facebook session will be in this state (createdOpening)
    // and we need to check it and close, to recall FBApp
    [_facebookSession closeAndClearTokenInformation];
    // and now recrate session and open it ;)
    _facebookSession = [[FBSession alloc] initWithAppID:kAppId
                                                    permissions:permissions
                                                urlSchemeSuffix:nil
                                             tokenCacheStrategy:[FBSessionTokenCachingStrategy defaultInstance]
                                ];

    //and reopen it like `[_facebookSession openWith... ];`
}
share|improve this question
I find only one way: kill session, when i reentered in these peace of code. See my edit – loldop Jan 29 at 12:16

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.