Is there any way to get error details from the FB.API() call in the Facebook Unity SDK? This code
FB.API(
query: "/me/achievements",
callback: response => {
if (!string.IsNullOrEmpty(response.Error)) {
Logger.LogError("FB ReportProgress Error: " + response.Error);
} else {
Logger.Log("FB ReportProgress response: " + response.Text);
}
},
method: Facebook.HttpMethod.POST,
formData: new Dictionary<string, string>() {{"achievement", url}}
);
logs "400 Bad Request" and nothing else.