Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exclude permissions from Facebook API

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?

like image 216
Andreas Avatar asked Sep 26 '13 12:09

Andreas


1 Answers

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. ”

like image 145
CBroe Avatar answered Sep 27 '22 22:09

CBroe