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 m conneting facebook using fbcoonect in iphone. When i login first time its give data but after logout of facebook and login with another account then also gives same data as per given last time. My code here like -

- (void)session:(FBSession*)session didLogin:(FBUID)uid {
self.usersession =session;


NSString* fql = [NSString stringWithFormat:
                 @"select     uid,name,first_name,middle_name,last_name,birthday,email,pic_square from user where uid == %lld",self.usersession.uid];


[NSDictionary dictionaryWithObject:fql
                            forKey:@"query"];
[[FBRequest requestWithDelegate:self]
 call:@"facebook.fql.query" params:params];
NSLog(@"User with id %lld logged in.", uid);
self.post=NO;}

and also i try like this code -

 - (void)session:(FBSession*)session didLogin:(FBUID)uid {
self.usersession =session;
NSLog(@"User with id %lld logged in.", uid);
[self getFacebookName];}

- (void)getFacebookName {
NSString* fql = [NSString stringWithFormat:
                 @"select uid,name,first_name,middle_name,last_name,birthday,email,pic_square from user where uid == %lld",self.usersession.uid];


NSDictionary* params =
[NSDictionary dictionaryWithObject:fql
                            forKey:@"query"];
[[FBRequest requestWithDelegate:self]
 call:@"facebook.fql.query" params:params];
self.post=NO;   
}

but its hase same error. Please give solution.

share|improve this question

1 Answer

your cookies not clear and you can not logged out successfully that's why you got same data

call Below method on logout Button

  • in your Appdeleger.h file

    import "FBConnect.h"

    Facebook *facebook;

    @property (nonatomic, retain) Facebook *facebook;

  • in Appdeleger.m file

@synthesize facebook;

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
 {

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

     userPermissions = [[NSMutableDictionary alloc] initWithCapacity:1];
     cntrLogin *objcntrLogin = [[[cntrLogin alloc] initWithNibName:@"cntrLogin" bundle:nil] autorelease]; //your facebook login view controlelr page object and assighn to main window
     facebook = [[Facebook alloc] initWithAppId:kAppId andDelegate:objcntrLogin];   //kAppId   is a facebook app id
     self.navigationController = [[[UINavigationController alloc] initWithRootViewController:objcntrLogin] autorelease];
 }

now in loginViewcontrooler.h

#import "Appdeleger.h"
cntrAppDelegate *objAppdele; //delegate object

in loginViewcontrooler.m file

 - (void)viewDidLoad
 {
 objAppdele =(cntrAppDelegate *)[[UIApplication sharedApplication]delegate];
 }

your logoutButtonAction put this below code:-

 -(IBAction)logOutfacebook
 {
 [[objAppdele facebook] logout];

 NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (NSHTTPCookie *each in [[[cookieStorage cookiesForURL:[NSURL
 URLWithString:self.serviceRootURLString]] copy] autorelease]) {
    [cookieStorage deleteCookie:each];
}

 }

hope you understood how to implement if any query put your comment i will give you more solution

thank you

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.