I am calling the graph API and everything is ok with Android, with ios instead it works only if I order id,name and gender, returning the following error: "The operation couldn’t be completed. (com.facebook.sdk error 5.)".
I use the plugin as follows: First I make the login:
and this is ok both ios that Android, then inside the function fbLoginSuccess I use:
facebookConnectPlugin.api("/me?fields=id,name, email, birthday, picture, gender",
["public_profile"],
function (result) { },
function (error) { }
);
and this works only on android, instead on ios returns the above error; As already mentioned on ios it works only if I order id,name and gender without email, birthday and picture.
Who can help me? Thanks
I am calling the graph API and everything is ok with Android, with ios instead it works only if I order id,name and gender, returning the following error: "The operation couldn’t be completed. (com.facebook.sdk error 5.)". I use the plugin as follows: First I make the login:
and this is ok both ios that Android, then inside the function fbLoginSuccess I use:
and this works only on android, instead on ios returns the above error; As already mentioned on ios it works only if I order id,name and gender without email, birthday and picture. Who can help me? Thanks