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.

Possible Duplicate:
iphone: facebook logout feature does not working

i am implementing FB integration through FBConnect It is not logout from Fb when i pressed logout button It only show previous Login.. My code is as follows:

- (void)viewWillAppear:(BOOL)animated
{

    [super viewWillAppear:animated];
    AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

    if (![[delegate facebook] isSessionValid]) {

    } else {
        [self showLoggedIn];
    }

}


- (IBAction)postMessageToWall:(id)sender {


        currentAPICall = kDialogFeedUser;
        SBJSON *jsonWriter = [[SBJSON new] autorelease];


        NSArray* actionLinks = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:
                                                          @"TaxSmart Hello.",@"name",@"http://www.google.com",@"link", nil], nil];
        NSString *actionLinksStr = [jsonWriter stringWithObject:actionLinks];


        UIImage *img=[UIImage imageNamed:@"tick.png"];

        NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       @"Piyush here.", @"name",
                                       @"This is Great App.", @"caption",
                                       @"FuNNNN.", @"description",
                                       @"http://www.iTaxsmart.com/", @"link",
                                       img.CIImage, @"picture",
                                       actionLinksStr, @"actions",
                                       nil];

        AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
        [[delegate facebook] dialog:@"feed"
                          andParams:params
                        andDelegate:self];
}
share|improve this question

marked as duplicate by Igy, Maulik, Till, Evan Mulawski, Michael Berkowski Jun 24 '12 at 2:51

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

when you click on logout button call bellow method its work but just check your userdefault key..

- (void)fbDidLogout 
{    
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [facebook invalidateSession];
    [defaults removeObjectForKey:@"FBAccessTokenKey"];
    [defaults removeObjectForKey:@"FBExpirationDateKey"];
    [defaults synchronize];
}

hope,this help you.....

:)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.