List of Facebook fields returned by Social Graph API
There is a tool called graph API explorer. https://developers.facebook.com/tools/explorer you can search for field names by typing on “search for a field” on the left side
There is a tool called graph API explorer. https://developers.facebook.com/tools/explorer you can search for field names by typing on “search for a field” on the left side
A very detailed explanation on how to handle this case is available at “Using a Custom JsonConverter to fix bad JSON results”. To summarize, you can extend the default JSON.NET converter doing Annotate the property with the issue [JsonConverter(typeof(SingleValueArrayConverter<OrderItem>))] public List<OrderItem> items; Extend the converter to return a list of your desired type even for … Read more
https://graph.facebook.com/app/?access_token=[user_access_token] This will return the app this token was generated for, you can compare that against your app’s id.