I have a website with the Facebook login implementation. My app has the permission for the user\'s email. Even though the user logs into my app using Facebook I can only ret
You now have to specify the fields you want to get, it´s called "Declarative Fields":
FB.api('/me', {fields: 'name,email'}, function(response) {
console.log('Good to see you, ' + response.email + '.');
});
See the changelog for more information: https://developers.facebook.com/docs/apps/changelog#v2_4