Я делаю http-вызов в моем проекте stckblitz
http://api.openweathermap.org/data/2.5/weather?q=' + data.city + '&appid=' + this.APIKey
, но всегда выдает ошибку
Http failure response for http://api.openweathermap.org/data/2.5/weather?q=london&appid=6492527f849e5034d485df6b5981d407: 0 Unknown Error
https://stackblitz.com/edit/angular-open-weather-app
Вы должны использовать https версию URL:
https
https://api.openweathermap.org/data/2.5/weather?q=' + data.city + '&appid=' + this.APIKey