reference
http://stackoverflow.com/a/31363895
Graph API v2.0 FQL - https://developers.facebook.com/docs/reference/fql/user/
Graph API - https://developers.facebook.com/docs/graph-api
Graph API Changelog - https://developers.facebook.com/docs/apps/changelog
Grpah Explorer - https://developers.facebook.com/tools/explorer/
by July 8, 2015 any app / page tab created on Facebook using v2.4
code before (till v2.3) :
when run the same code via v2.4
make v2.4 select the needed fields :
http://stackoverflow.com/a/31363895
Graph API v2.0 FQL - https://developers.facebook.com/docs/reference/fql/user/
Graph API - https://developers.facebook.com/docs/graph-api
Graph API Changelog - https://developers.facebook.com/docs/apps/changelog
Grpah Explorer - https://developers.facebook.com/tools/explorer/
by July 8, 2015 any app / page tab created on Facebook using v2.4
code before (till v2.3) :
JavaScript:
FB.api('/me', function(response)
{
console.log(response);
});

when run the same code via v2.4

make v2.4 select the needed fields :
JavaScript:
FB.api('/me?fields=id,name,email,gender,timezone ', function(response)
{
console.log(response);
});