I am trying to make web application and login with Facebook using its java script SDK but i am stuck on this problem API call:
FB.api('/me', function(response) {
console.log(JSON.stringify(response));
});
This API call just give two inforamtion {"name":"Name","id":"74.......91"}
How to get full public profile information plus email address
Thanks