显然SuperAgent支持自定义 HTTP 标头:
request
.post('/api/pet')
.send({ name: 'Manny', species: 'cat' })
.set('X-API-Key', 'foobar')
.set('Accept', 'application/json')
.end(function(err, res){
if (res.ok) {
alert('yay got ' + JSON.stringify(res.body));
} else {
alert('Oh no! error ' + res.text);
}
});
我的问题:
- 如果我通过 npm 拉下 SuperAgent,我如何在 SuperAgent 发出的所有请求中注入我自己的 HTTP 标头?
- 注意:如有必要,我完全愿意创建一个扩展 SuperAgent 的新 npm 包。