использую xamarin forms: var url = string.Format("http://api.openweathermap.org/data/2.5/forecast?zip={0}&units=imperial&APPID=a0a0e5e6d1ded0c79e853990c86f957b", location); var client = new HttpClient();
var response = await client.GetAsync(url); получаю exception {System.Net.Http.HttpRequestException: An error occurred while sending the request ---> System.Net.WebException: Error: NameResolutionFailure …
хм, не уверен, но может в этом дело.. я так пишу _httpClient = new HttpClient(); _httpClient.BaseAddress ="http://api.openweathermap.org"; var response = await client.GetAsync($"data/2.5/forecast?zip={location}&units=imperial&APPID=a0a0e5e6d1ded0c79e853990c86f957b");
Обсуждают сегодня