我正在尝试使用 casperJS 调用 facebook API,使用如下网址:
https://graph.facebook.com/<APP_ID>/accounts/test-users?installed=false&name=Joe&locale=en_US&method=post&access_token=<ACCESS_TOKEN>
当我将它放在浏览器中时它工作正常(我得到一个非常好的 JSON 结果),但是当我尝试在 casperJS 脚本中访问它时,我得到一个 about:blank 页面。我尝试了各种方法:
casper.open(url);
casper.open(url, { method: 'post' });
casper.open(url, { method: 'get' }); // even though it should be a post...
casper.open(url, { method: 'put' }); // still trying stuff
casper.open(baseUrl, { method: 'post', data: { ... } });
当我得到当前的url时,它是about:blank,当我得到内容时,它只是一个空页面:
<html><head></head><body></body></html>