With the Facebook iOS SDK code below, the log is always "(null)"
facebook = [[Facebook alloc] initWithAppId:@"xxxxxxxxx" andDelegate:self];
NSLog(@"%@", [facebook isSessionValid]);
Any ideas what could be going on?
|
With the Facebook iOS SDK code below, the log is always "(null)"
Any ideas what could be going on? |
|||
|
|
|
%@ is your problem.
|
|||
|
|
|
To check whether your facebook session is valid or not, type
It will print the YES/TRUE and NO/FALSE value into 1 and 0 respectively. |
||||
|
|
|
Creating the Facebook object doesn't create a Facebook session. Once you have the Facebook object, you can call the -(void)authorize:(NSArray *)permissions method, which will prompt the user to login, either through the Facebook app, Safari, or a popup (whichever is available in that order). Once the user successfully logs in, the session will have been created and the [facebook isSessionValid] call should return YES. |
|||||
|