My current code is running as follows:
const request = require('request')
const apiKey = 'XXXXXXXXXXXXXX'
var dat;
let url = 'http://api.worldweatheronline.com/premium/v1/marine.ashx'
let qs = {
q: '-34.48,150.92',
format: 'json',
apiKey
}
request({ url, qs }, (err, response, body) => {
if (err)
return console.error(err)
if (response.statusCode != 200)
return console.error('status code is', response.statusCode)
body = JSON.parse(body)
dat = body.data.hourly[0].tempC
})
console.log(dat);
I am anticipating a result of 15 from the API I am using because it should return:
{
"data": {
"request": [],
"weather": [{
"date": "2016-11-20",
"astronomy": [],
"maxtempC": "27",
"maxtempF": "80",
"mintempC": "15",
"mintempF": "58",
"hourly": [{
"time": "0",
"tempC": "15",
...
However, instead of getting the expected value of Undefined
. Why is this happening? Any help would be greatly appreciated. Thanks.