我正在尝试通过 NodeJs 上的 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)
请帮忙。