我正在尝试通过NodeJ上的Cntlm代理发出HTTP请求,但我无法使其工作。这是我的代码:
var http = require('http');
var options = {
host: 'http://127.0.0.1',
port: 3128,
path: "http://www.google.com",
headers: {
Host: "www.google.com"
}
};
http.get(options, function(res) {
console.log("Got response: " + res.statusCode);
}).on('error', function(e) {
console.log("Got error: " + e.stack);
});
我总是收到以下错误:
Got error: Error: getaddrinfo ENOTFOUND
at errnoException (dns.js:37:11)
at Object.onanswer [as oncomplete] (dns.js:124:16)
请帮忙。
答案 0 :(得分:0)
我发现options.host不应该有协议('http://')。删除它给了我一个302-Found。只需将www.google.com更改为非重定向网址即可获得200-Ok。