iOS Facebook permissions listed twice on PFFacebookUtils logInWithPermissions

174 Views Asked by At

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:

enter image description here

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.

0

There are 0 best solutions below