代理选项在nodejs的请求模块中不起作用

时间:2016-11-18 12:44:41

标签: javascript node.js proxy request

当我尝试使用nodejs执行代码时,它立即给出错误,甚至没有进程来执行带代理的url,但是当我删除代理选项时它可以工作。 以下是我使用代理命中任何网址的代码:

request({
     headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Accept-Language': 'en-US,en;q=0.5',
        'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',
     //  'Cookie': cookieReq
     },
     uri: 'www.website.com',
     method: 'GET',
     proxy: 192.12.31.12:3128
  }, function (error, response, html) {
       if (!error && response.statusCode == 200) {
          // final operations
          fs.writeFile('eight.html', html,  function(err) {
              if (err) {
                 return console.error(err);
              }
          });
       }
 });

1 个答案:

答案 0 :(得分:0)

尝试
proxy: "http://192.12.31.12:3128"
而不是 proxy: 192.12.31.12:3128