phantomjsでプロキシを使用する方法がわかりません。試してみました
phantomjs example.js --proxy = "ip:port"
phantomjs example.js --proxy = ip:port
phantomjs example.js --proxy = ip:port --proxy-type = http
しかし、私は私のip =(
proxy ip aprioriが無効な場合も、出力はありません。
example.js:
var page = require('webpage').create();
page.onConsoleMessage = function(msg) {
console.log(msg);
};
page.onLoadFinished = function(status){
if (!status){
console.log('fail');
phantom.exit();
}
page.render("1.png");
phantom.exit();
};
page.open("http://whoer.net/");
私が忘れた明らかなことは何ですか?ありがとう。