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.