I am creating an application with AngularJs and I would like to login to Fb, I am using the Graph API of Facebook and it returns all the data except the email.
this is my function:
$scope.me = function() {
Facebook.api('/me?fields=name,email' , function(response) {
$scope.user = response;
});
};