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.
  1. Once I login into the Facebook system using iOS SDK 3.0.
  2. Somehow my application will terminate without calling the logout event.
  3. My current login is active in the browser or webview, and I want to remove that account
    information from the device. How can I remove it? (Programmatically call the logout event when terminating my application).

I tried [FBSession activesession close;], but I am not getting the proper solution.

share|improve this question

2 Answers

When you click on the logout button, call the below method.

-(void)fbDidLogout
{
    [facebook invalidateSession];
}

I hope this is helpful.

share|improve this answer
you are right but This method will call after i press on logout button and my application is crash at this time not event will call. – Anjan Sep 27 '12 at 11:10
- (void)fbDidLogout { [[NSUserDefaults standardUserDefaults] setObject:@"" forKey:@"access_token"]; [[NSUserDefaults standardUserDefaults] setObject:@"" forKey:@"exp_date"]; [[NSUserDefaults standardUserDefaults] synchronize]; isLoggedIn = NO; } – Rushabh Sep 27 '12 at 11:15
up vote 0 down vote accepted

I got the solution. When your application has crashed and your session is still alive, at that time just check this method:

if([FBSession activeSession])
{
    [[FBSession activeSession] closeAndClearTokenInformation];
}

, in this application delegate:

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
}
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.