I'm trying to run the following code, but get an exception:
An exception of type 'Newtonsoft.Json.JsonSerializationException' occurred in Newtonsoft.Json.DLL but was not handled in user code
Additional information: Error converting value "country" to type 'LocalGasPrices.Station'. Path '', line 1, position 9.
var jsonObj = JObject.Parse(URL);
var results = jsonObj["stations"].Children().Values();
var details = new List<Station>();
foreach (JToken result in results)
{
var st = result.ToString();
var searchResult = JsonConvert.DeserializeObject<Station>(st);
details.Add(searchResult);
}
foreach (Station s in details)
{
this.txtDebug.Text += s.address;
}
And here are the classes for the JsonDeserialization:
public class Status
{
public string error { get; set; }
public int code { get; set; }
public string description { get; set; }
public string message { get; set; }
}
public class GeoLocation
{
public string city_id { get; set; }
public string city_long { get; set; }
public string region_short { get; set; }
public string region_long { get; set; }
public string country_long { get; set; }
public string country_id { get; set; }
public string region_id { get; set; }
}
public class Station
{
public string country { get; set; }
public string price { get; set; }
public string address { get; set; }
public string diesel { get; set; }
public string id { get; set; }
public string lat { get; set; }
public string lng { get; set; }
public string station { get; set; }
public string region { get; set; }
public string city { get; set; }
public string date { get; set; }
public string distance { get; set; }
}
public class RootObject
{
public Status status { get; set; }
public GeoLocation geoLocation { get; set; }
public List<Station> stations { get; set; }
}
And here is an example of the JSON response:
{
"status": {
"error": "NO",
"code": 200,
"description": "none",
"message": "Request ok"
},
"geoLocation": {
"city_id": "147",
"city_long": "Saint-Laurent",
"region_short": "QC",
"region_long": "Quebec",
"country_long": "Canada",
"country_id": "43",
"region_id": "35"
},
"stations": [
{
"country": "Canada",
"price": "3.65",
"address": "3885, Boulevard Saint-Rose",
"diesel": "0",
"id": "33862",
"lat": "45.492367",
"lng": "-73.710915",
"station": "Shell",
"region": "Quebec",
"city": "Saint-Laurent",
"date": "3 hours agp",
"distance": "1.9km"
}
]
}