Node.js如何使用代理发送request请求?
迷茫
迷茫 2017-04-17 11:02:02
0
0
980

请问Node.js如何支持代理方式发送请求?
目前想支持的方式有
http, https, socks4, socks5
我目前找到了一个支持socks5的.
https://github.com/mattcg/soc...
但是好像没找到支持socks4http方式的node.js模块.
请问有人知道怎么解决吗?
谢谢.


自己好像测试成功了.
通过在options里加path参数

var http = require('http'),
    op = {
        host: '127.0.0.1',
        port: 8087,
        method: 'GET',
        path: 'http://segmentfault.com'
    };
var req = http.request(op, function (res) {
    res.on('data', function (chunk) {
        console.log('BODY:', chunk);
    });
});
req.on('error', function (e) {
    console.log('Error got: ' + e.message);
});
req.end();
迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

Antworte allen(0)
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage