var HttpsProxyAgent = require('https-proxy-agent');
this.agent = new HttpsProxyAgent("http://example.proxy.com");但是,我还需要添加一个set node.js原始代理设置。
http.Agent({ keepAlive: true });我没有看到用于设置https代理的选项,因为https-proxy-agent派生自agent-base。有没有办法用不同的node.js模块来实现这一点呢?
https://stackoverflow.com/questions/43913977
复制相似问题