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 have facebook integration in my app, that allows users to login using facebook or publishing comments using my facebook app. But the problem is that user after first login, is always logged and is not prompted to login everytime he comments or login, even [facebook logout] is called. I have tried cookie deletion before feed or after:

-(void) fbDidLogout {

    NSLog(@"Logged out of facebook");
    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];
        }
    } }//End of Method

, but then, it gives the "The page is not found" error". Here is my code:

-(void) facebookPost{




    if (facebook==nil)

        facebook = [[Facebook alloc] initWithAppId:kAppId andDelegate:self];


        NSString *path= [NSString stringWithFormat:@"%@%@",imageService,self.newsDetail.image];


        NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
        if ([defaults objectForKey:@"FBAccessTokenKey"] 
            && [defaults objectForKey:@"FBExpirationDateKey"]) {
            facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
            facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
        }


        NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       kAppId, @"app_id",
                                       path, @"picture",
                                       self.titulo.text, @"name",
                                       self.texto.text, @"caption",
                                       self.newsDetail.link, @"link",
                                       nil];

        [facebook dialog:@"feed" andParams:params andDelegate:self];

        kAppId=nil;

        imageService=nil;

        path=nil;

        defaults=nil;

        params=nil;

}

- (void)dialogDidComplete:(FBDialog *)dialog:(FBDialog *)dialog{



    [facebook logout];

}

The same issue happens with login, after first login, user is not prompted to login, it logins directly to the app.

Many thanks.

share|improve this question
add this line in your logout method fbGraph.accessToken = nil; – Spynet Sep 10 '12 at 7:15
I tried it but it doesn't works. Anyways, many thanks!!! – theomen Sep 10 '12 at 15:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.