I am using newest SDK for facebook for iphone application. My Problem is that i could not maintain the session through out the application. everytime i have to make new facebook variable and initilize it to app id to work. But that leads to multiple session And the if i am logged in even then it show "LOGIN" in the next tab. Here is scenario
1) Home Tab, i logged in
2) Second Tab, the button for facebook shows that i am not login, I have to relogin.
and so on with the third tab.
Is there a way that i keep one session in all the application?
Can you please guide me in this problem
[_facebook isSessionValid];
it returns me that the Session is not valid, Can you please help me out in this regard. Please guide me.
permissions = [[NSArray arrayWithObjects:@"read_stream",@"read_mailbox", @"offline_access",@"read_friendlists", @"friends_location", @"friends_birthday",@"friends_about_me",@"friends_hometown",@"friends_relationships",@"friends_relationship_details",nil] retain];
facebook = [[Facebook alloc] initWithAppId:appId]; [facebook authorize:permissions delegate:self];
I put this code in App delegate, and assigned it into new view controller like this
fb = [[Facebook alloc] init];
fb = appdel.facebook;
But it says Try again, error occured (corrected)
Thanks