Fix OpenWeather references

This commit is contained in:
Tressley Cahill
2022-11-15 09:40:35 -05:00
parent 120e068277
commit 2653d47fcd
2 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ function dateTime() {
}
function weatherBalloon(cityID) {
var apiKey = ''; //Your OpenWeatherMap key
var apiKey = ''; //Your OpenWeather API key
fetch('https://api.openweathermap.org/data/2.5/weather?id=' + cityID + '&appid=' + apiKey)
.then(function(resp) {
return resp.json()