I\'ve just updated facebook sdk v4.0
and according the tutorial of Using Custom Login UIs
-(IBAction)facebookLoginClick:(id)sender { FBSDKLoginManag
For me in Objective-C following worked
FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init]; if ([FBSDKAccessToken currentAccessToken]) { [login logOut]; }
and issue was user was trying to login as another user as suggested by @Vineeth Joseph