changed weather key

This commit is contained in:
Martin Donnelly 2016-09-09 14:21:31 +01:00
parent aa8e6b0e38
commit 08d0545da1
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@
// let's show a map or do something interesting!
$.ajax({
type: 'GET',
url: 'https://api.forecast.io/forecast/0657dc0d81c037cbc89ca88e383b6bbf/' + latitude.toString() + ',' + longitude.toString() + '?units=uk2',
url: 'https://api.forecast.io/forecast/9ad2a41d420f3cf4960571bb886f710c/' + latitude.toString() + ',' + longitude.toString() + '?units=uk2',
data: '',
dataType: 'jsonp',
timeout: 10000,

View File

@ -7,7 +7,7 @@ var logger = require('log4js').getLogger();
var forecastOptions = {
APIKey: '0657dc0d81c037cbc89ca88e383b6bbf', units: 'uk2'
APIKey: '9ad2a41d420f3cf4960571bb886f710c', units: 'uk2'
};
module.exports = {
@ -50,4 +50,4 @@ module.exports = {
}
};
};