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)