Remove API key from sample extension
This commit is contained in:
parent
4be28a6e57
commit
e9a57314a0
1 changed files with 5 additions and 2 deletions
|
@ -3,7 +3,10 @@
|
||||||
/* Kreg Hanning <khanning@media.mit.edu>, July 2016 */
|
/* Kreg Hanning <khanning@media.mit.edu>, July 2016 */
|
||||||
|
|
||||||
(function(ext) {
|
(function(ext) {
|
||||||
var APPID = '960f7f58abbc5c98030d1899739c1ba8';
|
// You will need to obtain an API key to query
|
||||||
|
// the OpenWeatherMap.org server
|
||||||
|
// https://openweathermap.org/api
|
||||||
|
var APPID = 'INSERT_API_KEY_HERE';
|
||||||
|
|
||||||
var cacheDuration = 1800000 //ms, 30 minutes
|
var cacheDuration = 1800000 //ms, 30 minutes
|
||||||
var cachedTemps = {};
|
var cachedTemps = {};
|
||||||
|
@ -124,4 +127,4 @@
|
||||||
// Register the extension
|
// Register the extension
|
||||||
ScratchExtensions.register('Weather extension', descriptor, ext);
|
ScratchExtensions.register('Weather extension', descriptor, ext);
|
||||||
|
|
||||||
})({});
|
})({});
|
||||||
|
|
Reference in a new issue