I am using facebook login in mvc3 project.I am try to fetch user email address. Here is my code:-
function getFaceBook() {
FB.init({
appId: 'xxxx', // App ID
channelUrl: '//' + window.location.hostname + '/channel', // Path to your Channel File
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true,
});
FB.login(function (response) {
FB.api('/me', function (response) {
alert(JSON.stringify(response));
alert(response.email)
var Profile = "http://graph.facebook.com/" + response.id + "/picture";
});
});
All is working fine. But responce always return email undefine.Before last week it was working fine. Can anyone tell me what i miss. Thanks in advance.