I have a simple application that allows the user to fill in the fields from their facebook account. All I want is an email, user name and location - why in the world even the simplest login without any additional permission requests leads to the facebook API asking the user to allow access to the friends list ... ?? I don’t need a friend list .. - is there a way to disable the permission request for a friend list?
FB.login(function(response) { if (response.authResponse) { console.log('Welcome! Fetching your information.... '); FB.api('/me', function(response) { console.log('Good to see you, ' + response.name + '.'); }); } else { console.log('User cancelled login or did not fully authorize.'); } });
The message user will get something like this:
Example.com would like to access your public profile, friend list, and email address.
I don’t want to request a “friend list” - is there any way to disable this?
source share