如何使用Fetch API设置代理。 我正在开发一个node.js应用程序,我想看一下HTTPS响应的响应主体。我正在使用这个使用节点http的npm包: https://www.npmjs.com/package/isomorphic-fetch
我尝试设置env变量,如:
set https_proxy=http://127.0.0.1:8888
set http_proxy=http://127.0.0.1:8888
set NODE_TLS_REJECT_UNAUTHORIZED=0
但它似乎只适用于请求NPM节点模块。
我总是收到以下消息:
http://127.0.0.1:8888
(node:30044) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): FetchError: request to https://www.index.hu failed, reason: read ECONNRESET
答案 0 :(得分:2)
@jimliang has posted a solution for node-fetch
。他
fetch('https://www.google.com',{ agent:new HttpsProxyAgent('http://127.0.0.1:8580')})
.then(function(res){
//...
})