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 probably don't have email permission even though you think you do.
Try,
FB.login(function(){ FB.api('me', function(response){ console.log(response.email); }); },{'scope':'email'});