如何在HTTPS获取请求中设置标头?

时间:2017-06-27 16:37:01

标签: javascript https get noaa

我正在使用hardus的npm package https来向NOAA提出请求。 NOAA上的文档很差,并且https包中不存在,我在设置标题时遇到问题。这是我的请求代码,

https.get(url, function(res) {
  res.setEncoding('utf8');
  res.on('data', (chunk) => {
    //Parse through and deal with data...
  }
  res.on('error', (e) => {
    //Deal with error...
  }
}

如何在我的请求中添加标头以包含Web服务令牌?

0 个答案:

没有答案