Я новичок в API в целом.Я пытаюсь научиться использовать API Google GeoCode для получения округа из почтового индекса, введенного пользователем.Я использую .NET Core MVC
Пример полезной нагрузки можно увидеть по следующему URL: http://maps.googleapis.com/maps/api/geocode/json?address=77379&sensor=true
, который создает полезную нагрузку:
{
"results" : [
{
"address_components" : [
{
"long_name" : "77379",
"short_name" : "77379",
"types" : [ "postal_code" ]
},
{
"long_name" : "Spring",
"short_name" : "Spring",
"types" : [ "locality", "political" ]
},
{
"long_name" : "Harris County",
"short_name" : "Harris County",
"types" : [ "administrative_area_level_2", "political" ]
},
{
"long_name" : "Texas",
"short_name" : "TX",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "United States",
"short_name" : "US",
"types" : [ "country", "political" ]
}
],
"formatted_address" : "Spring, TX 77379, USA",
"geometry" : {
"bounds" : {
"northeast" : {
"lat" : 30.088189,
"lng" : -95.47364999999999
},
"southwest" : {
"lat" : 29.9871611,
"lng" : -95.5887879
}
},
"location" : {
"lat" : 30.0314279,
"lng" : -95.5302337
},
"location_type" : "APPROXIMATE",
"viewport" : {
"northeast" : {
"lat" : 30.088189,
"lng" : -95.47364999999999
},
"southwest" : {
"lat" : 29.9871611,
"lng" : -95.5887879
}
}
},
"place_id" : "ChIJtZcGtDLNQIYRtGE9AgmSOPQ",
"postcode_localities" : [ "Klein", "Spring" ],
"types" : [ "postal_code" ]
}
],
"status" : "OK"
}
Например, Я хотел бы получить строку "Округ Харрис" из приведенного выше URL-адреса JSON.
В моей модели у меня есть:
public class GoogleAddress
{
public List<Result> results;
}
[DataContract]
public class Result
{
[DataMember(Name = "long_name")]
public string long_name { get; set; }
[DataMember(Name = "short_name")]
public string short_name { get; set; }
[DataMember(Name = "types")]
public string types { get; set; }
}
В моем контроллере у меня есть следующее вмой метод:
//zip to be passed as a parameter in my method later, hardcoded here for testing
string zip = "77379";
string county = "";
var serializer = new DataContractJsonSerializer(typeof(GoogleAddress));
//example url: http://maps.googleapis.com/maps/api/geocode/json?address=77379&sensor=true
string url = "http://maps.googleapis.com/maps/api/geocode/json?address=" + zip + "&sensor=true";
var client = new HttpClient();
var streamTask = client.GetStreamAsync(url);
var address = (GoogleAddress)serializer.ReadObject(await streamTask);
var result = address.results;
//how do I get the county from the result?
return View(county);
Как настроить мою модель в соответствии с полезной нагрузкой и как я могу получить название округа из полезной нагрузки?