0

我正在尝试通过 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)

请帮忙。

4

1 回答 1

0

我发现 options.host 不应该有协议('http://')。删除它会给我一个 302-Found。只需将 www.google.com 更改为非重定向 URL 即可获得 200-Ok。

于 2013-06-28T08:03:15.797 回答