i'm using this http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/ for my log in with facebook within my iphone app.
i have followed all the necessary steps to integrate the fbagent, After logging in for the first time, it works, i can call my facebook name and all. but when i try to log out using
[fbAgent logout];
after logging in with a different account, when i try to call the facebook name using this
- (void) facebookAgent:(FacebookAgent*)agent didLoadName:(NSString*) name{
NSLog(@"%@",name);
}
it gives me the very first fb account that i used to log in. and when i try to logout again then log in with a wrong username and pass, it always succeeds and always outputs the same name, even tho i close the app and run again.
i think im missing something here