PhantomJS 不适用于代理

PhantomJS does not work with proxy

我可以让 SoapUI 在端口 8080 上使用此代理,但不能使用 PhantomJS。

我输入了命令行

nslookup proxy

获取代理IP,给了我2个IP

Serveur:  myserverurl
Address:  myserverip

Nom:      myproxyurl
Address:  myproxyip
Aliases:  myproxyalias

我用这个 PhantomJS 命令尝试了两个 IP

phantomjs.exe --proxy=ip:8080 hello.js

None 有效,为什么?

您可能需要 select 正确的 proxy type (http/socks5/none):

phantomjs --proxy=ip:8080 --proxy-type=http hello.js

phantomjs --proxy=ip:8080 --proxy-type=socks5 hello.js

您也可以尝试将这些结合起来:

phantomjs --proxy=http://ip:8080 hello.js

phantomjs --proxy=socks5://ip:8080 hello.js