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 am using facebook sdk 3.1 & FBloginview.So i want to perform logout functionality 
from other view controller..
 Here is my code,

-(void)logout
{
    AppDelegate *appdelegate = [[UIApplication sharedApplication] delegate];

    if (FBSession.activeSession.isOpen) 
    {
        [appdelegate closeSession];       
    }
    [appdelegate openSessionWithAllowLoginUI:NO];
 }

in app delegate method,

- (void) closeSession
{
    [FBSession.activeSession closeAndClearTokenInformation];
}

So in the closeSession method I am getting EXC_BAD_ACCESS.

share|improve this question
This question is very unintellectual, seemingly you have put little to no effort into it... – H2CO3 Dec 29 '12 at 10:24
Why am i getting crash...? – Kalpesh Dec 29 '12 at 10:27

1 Answer

On logout button click remove all keys stored in userdefault for facebook

- (void)fbDidLogout
{
  NSHTTPCookie *cookie;
  NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];

  for (cookie in [storage cookies])
  {
      NSString* domainName = [cookie domain];
      NSRange domainRange = [domainName rangeOfString:@"facebook"];
      if(domainRange.length > 0)
      {
          [storage deleteCookie:cookie];
      }
   }
}

OR

Facebook class already includes the cookie removal in its invalidateSession function,

which is called in [facebook logout];

share|improve this answer
I am using facebook sdk 3.1.. It's not working for me... – Kalpesh Dec 29 '12 at 10:48
As well as FB app stores login information in NSUserDefaults it also stores login information in NSHTTPCookieStorage. so above code should work. – femina Dec 29 '12 at 10:58
Thanks fo reply. ok i am using FBlogiview. So, i want to logout from another view controller. How can i achive this ?. – Kalpesh Dec 29 '12 at 11:11

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.