I am using Facebook Javascript SDK to get oauth token and retrieve all the data from FB:
function login() {
FB.api('/me', function (response) {
alert('You have successfully logged in, ' + response.name + ", " + response.email + "!");
});
I retrieve all basic information (full name, work, school, ID..) but not EMAIL (response.email == undefined) !!
I know it's possible to access email within basic information (not asking for 'email' permissions), how do I do that?