I added following function to get email address, but its not returning the email address.
its returning only,
accessToken: ""
expiresIn: 5874
signedRequest: ""
userID: ""
Function
$scope.login = function () {
Facebook.login(function (response) {
if (response.status == 'connected') {
$scope.logged = true;
$scope.me();
}
},{scope: 'email'});
};
I added following function to get email address, but its not returning the email address.
its returning only,
accessToken: ""
expiresIn: 5874
signedRequest: ""
userID: ""
Function