Я по-прежнему получаю следующую ошибку даже после использования этого прокси:
Доступ к выборке в 'https://crossorigin.me/www.metaweather.com/api/location/2487956/' из источника' null 'был заблокирован политикой CORS: Нет'Заголовок Access-Control-Allow-Origin 'присутствует в запрашиваемом ресурсе
async function getWeatherAW(woeid) {
try {
const result = await fetch(`https://crossorigin.me/www.metaweather.com/api/location/${woeid}/`);
const data = await result.json();
const tomorrow = data.consolidated_weather[1];
console.log(`Temperatures tomorrow in ${data.title} stay between ${tomorrow.min_temp} and ${tomorrow.max_temp}.`);
return data;
} catch(error) {
alert(error);
}
}
getWeatherAW(2487956);