I am using Parse and I am trying to log users in with PFFacebookUtils logInWithPermissions:block:
method. I am asking only for user_friends
permission and once, but here is what I'm getting:
The login process works fine though. Here is my code:
[PFFacebookUtils logInWithPermissions:@[@"user_friends"] block:^(PFUser *user, NSError *error) {
if(user){
...
}
}];
Is this a framework bug or am I missing something obvious? I am on iOS 8.1 and I have the latest ParseFacebookUtils/Parse pods.