作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
, -6ren">
curl -H "Authentication: <security token>" "https://a.bcsc.com/app/api/v2/<api-key>/<query type>?<optional parameters>"
request({
url: <<endpoint>>,
headers: {
Authentication: mpulseAuthToken
}
},function (error, response, body) {
if(error) {
console.log(error.message);
} else {
console.log(body);
}
});
如何使用请求模块在 Node JS 中发出上述 curl
请求。我手边已经有了安全 token 。
最佳答案
这很简单:
const request = require('request');
request({
url: 'https://a.bcsc.com/app/api/v2/',
headers: {
Authentication: '<security token>'
}
},
function(error, response, body)
console.log(response);
});
查看 Github 上的文档
关于javascript - 如何在 NodeJS 请求模块中发出此 curl 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44768157/
我是一名优秀的程序员,十分优秀!