CrossGeeks / FacebookClientPlugin

Facebook Client Plugin for Xamarin iOS and Android
MIT License
106 stars 32 forks source link

Unable to retrieve Firstname and Lastname #67

Open Loki606 opened 4 years ago

Loki606 commented 4 years ago

var result = await CrossFacebookClient.Current.RequestUserDataAsync(new string[] { "email", "first_name", "last_name"}, new string[] { "email", "first_name", "last_name"});

This results in a Gacebook page opening saying "Sorry, something went wrong. We are working on it and we'll get it fixed as soon as we can"

If have also tried: var result = await CrossFacebookClient.Current.RequestUserDataAsync(new string[] { "email", "first_name", "last_name"}, new string[] { "email", "default""});

and

var result = await CrossFacebookClient.Current.RequestUserDataAsync(new string[] { "email", "default"}, new string[] { "email", "default"});

But when I only leave the "email" field, it works.

Nothing seems to be able to get me the first and last names.