I have a Facebook application and i use the JavaScript JDK.
Im requesting the email permission well:
For new users i redirect to authorization window:
top.location = 'https://graph.facebook.com/oauth/authorize?client_id=' + APP_ID + '&scope=email&redirect_uri=XXX';
And then trying to fetch it:
FB.getLoginStatus(function (response) {
if (response.authResponse) {
FB.api('/me', function (response) {
console.log(response.email);
}
}
}
For existing users (in case their email is undefined) i even tried re request the email permission and re fetching it:
FB.login(function(response){
if(response.status == 'connected'){
FB.api('/me?fields=email,id', function(response) {
console.log(response.email);
});
}
},{scope: 'email'});
The problem is that for some user i get the email in the response of /me and for other its undefined. What can be wrong?
Thanks!