Facebook login responce not getting user's all Details like email, firstname, lastname. Its works fine in Facebook Graph API v2.0 but not in v2.4. I am using this plugin for PhoneGap application. this repository from https://github.com/phonegap-build/FacebookConnect
if (response.authResponse) {
facebookConnectPlugin.api('/me', null,
function (me_response) {
var username = me_response.email;
var firstname = me_response.first_name;
var lastname = me_response.last_name;
var ExternalIdentifier = me_response.id;
var Email = me_response.email;
var ProviderSystemName = "ExternalAuth.Facebook";
ExternalResponseInsert(apiSecretKey, storeId, languageId, username, firstname, lastname, Email, ExternalIdentifier, OAuthToken, OAuthAccessToken, ProviderSystemName);
facebookConnectPlugin.logout(function (response) {}, function (response) {});
});
}