请问Node.js如何支持代理方式发送请求?
目前想支持的方式有http
, https
, socks4
, socks5
我目前找到了一个支持socks5
的.
https://github.com/mattcg/soc...
但是好像没找到支持socks4
和http
方式的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();
业精于勤,荒于嬉;行成于思,毁于随。