详解nodejs通过代理(proxy)发送http请求(request)

前端之家收集整理的这篇文章主要介绍了详解nodejs通过代理(proxy)发送http请求(request)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

有可能有这样的需求,需要node作为web服务器通过另外一台http/https代理服务器发http或者https请求,废话不多说直接上代码大家都懂的:

方法 path:' https://www.google.com',//这里是访问的路径 headers:{ //这里放期望发送出去的请求头 } } //以下是接受数据的代码 var body = ''; var req = http.request(opt,function(res) { console.log("Got response: " + res.statusCode); res.on('data',function(d){ body += d; }).on('end',function(){ console.log(res.headers) console.log(body) });

}).on('error',function(e) {
console.log("Got error: " + e.message);
})
req.end();

这样我们就通过了指定代理服务器发出了https的请求,注意这里我们同代理服务器是http协议的,不是https,返回的结果当然肯定会根据你的代理服务器不同有所不同。

<Meta http-equiv="content-type" content="text/html;charset=utf-8"> 302 Moved

302 Moved

The document has moved here.

谷歌返回了一个302,告诉我们进行跳转,需要访问 https://www.google.com.tw/ 这个地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/nodejs/36176.html

猜你在找的Node.js相关文章