Get email via Facebook Graph API

0

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;
  });
};
    
asked by ZyMonogatari 22.08.2017 в 00:37
source

0 answers