ドキュメントに倣ってhttpsをfetchしているのですが、404が返ってきてしまいます。
何がいけないのでしょうか?
ドキュメントの記法
https://api.openweathermap.org/data/3.0/onecall?lat={lat}&lon={lon}&exclude={part}&appid={API key}
//create Tokyo object including latitude and longitude const tokyo = { lat: 35.68, lon: 139.75 }; const appId = 'API key'; //make a Ajax request to get the weather data 3.0 const getWeather = async (lat, lon) => { const response = await fetch(`https://api.openweathermap.org/data/3.0/weather?lat=${lat}&lon=${lon}&appid=${appId}`); const data = await response.json(); console.log(data); return data; }
ご存じの方どうか教えてください。
もしかして、Openweather 3.0から有料化されたのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。