有什么办法可以在Nightmare.js中对Socks5代理进行身份验证

时间:2019-08-04 10:58:38

标签: nightmare

我正在尝试在需要身份验证的噩梦Js中连接socks5代理。我在文档中找不到它。这是我正在使用的代码,但给出了错误。

  var proxyHost="las-c16.ipvanish.com";
  var proxyPort="1080";
  var nightmare = Nightmare({ show: true,  gotoTimeout: 30000,   switches:     {
      'proxy-server': 'socks5://' + proxyHost + ':' + proxyPort,
      'ignore-certificate-errors': true
    },
         waitTimeout: 400000
  })

这是我面临的错误

code: -120,
details: 'ERR_SOCKS_CONNECTION_FAILED',

0 个答案:

没有答案