var unirest = require("unirest");
var req = unirest("GET", "https://community-open-weather-map.p.rapidapi.com/weather");
req.query({
"q": "London,uk",
"lat": "0",
"lon": "0",
"callback": "test",
"id": "2172797",
"lang": "null",
"units": "\"metric\" or \"imperial\"",
"mode": "xml, html"
});
req.headers({
"x-rapidapi-key": "b2d08d45aamsh8e29242b170279bp17df06jsne007c0771e77",
"x-rapidapi-host": "community-open-weather-map.p.rapidapi.com",
"useQueryString": true
});
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
O-Technology