Correct OpenWeather reference

This commit is contained in:
Tressley Cahill 2022-11-15 09:46:22 -05:00 committed by GitHub
parent 2653d47fcd
commit 3f2d695a46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ function dateTime() {
}
function weatherBalloon(cityID) {
var apiKey = ''; //Your OpenWeather API key
var apiKey = ''; //OpenWeather API key
fetch('https://api.openweathermap.org/data/2.5/weather?id=' + cityID + '&appid=' + apiKey)
.then(function(resp) {
return resp.json()