This commit is contained in:
Ian Hollier 2021-04-12 08:41:23 -07:00 коммит произвёл GitHub
Родитель 6c3df47df5
Коммит 0a8abad8f4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -35,7 +35,7 @@ module.exports = async function (context, req) {
computedTelemetry.temp = await convertTemperature(context, computedTelemetry.temp);
// get external weather data
const openWeatherAppId = 'c5c93a9ef23935b7be775f03f14b5618';
const openWeatherAppId = '<add your open weather API here: https://openweathermap.org/api>';
computedTelemetry.weather = await getWeatherData(context, openWeatherAppId, computedTelemetry.lat, computedTelemetry.lon);
// get the deviceId from the incoming message data
@ -150,4 +150,4 @@ async function getKeyVaultSecret(context, secretUrl, forceTokenRefresh = false)
throw new Error('Unable to fetch secret');
}
}
}
}