美文网首页
收集资料 unirest - 其他笔记

收集资料 unirest - 其他笔记

作者: 自走炮 | 来源:发表于2020-08-07 01:00 被阅读0次
var unirest = require("unirest");

var req = unirest("GET", "https://covid-193.p.rapidapi.com/statistics");
req.query({
  country: "USA",
});
req.headers({
  "x-rapidapi-host": "covid-193.p.rapidapi.com",
  "x-rapidapi-key": "key",
  useQueryString: true,
});
req.end(function (res) {
  if (res.error) throw new Error(res.error);
  console.log(JSON.stringify(res.body, null, 3));
});

相关文章

网友评论

      本文标题:收集资料 unirest - 其他笔记

      本文链接:https://www.haomeiwen.com/subject/iwsgrktx.html