Reputation: 3384
Apparently when calling FB.login, the default permissions the user will have to give is this: "xxx will receive the following info: your public profile and friend list".
And I know that I can add extra permissions with: { scope : 'email' } and so on. The problem is, I don't want the whole public profile and the friend list.
The only thing I want is: first name, last name and email. Is it possible to exclude the basic permissions and just have the ones I want?
Upvotes: 5
Views: 1320
Reputation: 96412
No, not possible.
https://developers.facebook.com/docs/facebook-login/permissions/:
“When someone connects with an app using Facebook Login, the app can access their public profile and friend list, the pieces of information that are visible to everyone. ”
Upvotes: 5