From my point of view, we can get user information through something like this:
$cordovaFacebook.api( "me?fields=name,email,picture", ["public_profile", "email"]) .then(function (response) { console.log(response); }, error);
How can we directly get all the available information without specifying one by one?
facebook cordova cordova-plugins
user1995781
source share