You will not know which permissions user granted to your application in FB.login callback. You should query permissions connection for user object:
FB.api('/me/permissions', function(response){
if (repsponse && response.data && response.data.length){
var permissions = response.data.shift();
if (permissions.email) {
alert('User have granted `email` permission');
}
}
});
Update:.
While it's not stated by Facebook that callback for FB.login will not include perms or scope property which was used before switch to OAuth2 this is the case! There is nothing said in current documentation about permissions passed to callback for FB.login, FB.getLoginStatus or FB.getAuthResponse.
There is also bug report about this bahavior which is marked as Won't Fix