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 have an application that let's users switch accounts for Facebook. I have tested 9 accounts and 3 of them ,if logged-in, cannot logout.

It automatically find's that session. I'm only using one slot for userdefaults and is being deleted upon logout.

Here's my login button

FBSessionLoginBehavior behavior = FBSessionLoginBehaviorForcingWebView;

 FBSession *session = [[EdwardSocialShare sharedEdwardSocialShare] switchToUserInSlot:2];
[session openWithBehavior:behavior
        completionHandler:^(FBSession *session,
                            FBSessionState status,
                            NSError *error) {

        }];

Those 3 accounts completes directly(completionHandler called) even if I logged them out. And I'm hundred percent sure that logout works because on the other accounts, it works well.

Here's my logout button

 [_currentSession closeAndClearTokenInformation];//Just for testing
[FBSession.activeSession closeAndClearTokenInformation];//Just for testing

_currentSession = nil;
self.facebook = nil;//(share purposes)

 FBSessionTokenCachingStrategy *tokenCachingStrategy = [self createCachingStrategyForSlot:slot];
    [tokenCachingStrategy clearToken];
    NSLog(@"%@",nameKey);
    [defaults removeObjectForKey:idKey];
    [defaults removeObjectForKey:nameKey];
[defaults synchronize];

The webview just pops in and exits directly but with other accounts let's me login instead. That he found that session already. Hope you guys can help me with this and Thanks!

Edited : I tried the SwitchUserSample from the FB SDK package and turned out that it also had the same problem. (Cannot change user on specific accounts)

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.