我使用request
模块来使用Web服务。 Web服务期望标题中的Proxy-Authorization
字段。
我发送此值,但在目标服务器中,Proxy-Authorization
已消失。
请帮忙。
答案 0 :(得分:0)
我从我的同事那里得到了一些帮助,这是解决问题的方法。 只是覆盖proxyHeaderExclusiveList
const proxyHeaderExclusiveList = [];
proxyHeaderExclusiveList.concat = function newConcat() {
return this;
};
const options = {
url: SOME_URL,
headers: SOME_HEADERS,
proxyHeaderExclusiveList: proxyHeaderExclusiveList
};