我需要使用wappalyzer phantomjs获取url的数据。当我在命令行上运行phantomjs然后它工作正常。但我需要在网页上获取json响应。我可以使用php或其他一些在网页上获得响应我没有得到完整的例子。请帮助。
答案 0 :(得分:0)
是的,你可以用php做到这一点。
$ output = shell_exec(' /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs --ssl- protocol = any --ignore-ssl-errors = true driver。 js http://example.com'); echo json_decode($ output,true);
注意:更改此" /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin /"到安装了phantomjs的目录。
答案 1 :(得分:0)
您需要执行命令:
$output = shell_exec('/usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs --ssl-protocol=any --ignore-ssl-errors=true driver.js http://example.com'); echo json_decode($output,true);
注意:将此“/usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/
”更改为您安装phantomjs
的目录。