I have some troubles with Facebook Login with iOS.
When I click on my "Login" button, the app correctly goes on Facebook, get token, then comes back and returns a correct token. BUT:
If I try a get query like
NSString *query = @"SELECT name from user where uid= me()";
The result data is null. If I try the same query in my web browser with facebook logged in, the query works fine. Seems like my iOS app dont get the me() command, like I'm not logged in.
I do my facebook connection in this way:
- (IBAction)buttonClickHandler:(id)sender {
// get the app delegate so that we can access the session property
AppDelegate *appDelegate = [[UIApplication sharedApplication]delegate];
// this button's job is to flip-flop the session from open to closed
if (appDelegate.session.isOpen) {
[appDelegate.session closeAndClearTokenInformation];
} else {
if (appDelegate.session.state != FBSessionStateCreated) {
appDelegate.session = [[FBSession alloc] init];
}
[appDelegate.session openWithCompletionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
[self updateView];
}];
}
}
