我发送带有标题的请求(X-CSRF-Token,cookie等)并获得空响应,但是当我对postman(chrome扩展)执行相同操作时,我得到了正确的响应。
回应示例(类似这样):
public string getValue(string st)
{
if (st.IndexOf('/') == -1)
return st;
return "/" + st.Split('/')[1] + "/";
}
UPD:
我的代码
<a href="img1.jpg" data-gallery><img src="img11.jpg" alt="" /></a>
<a href="img2.jpg" data-gallery><img src="img21.jpg" alt="" /></a>
运行:
phantomjs --ssl-protocol = TLSv1 --debug = no --load-images = no --ignore-ssl-errors = yes --web-security = true test.js
答案 0 :(得分:0)
应添加以下2个参数:--ignore-ssl-errors=true --ssl-protocol=any
phantomjs运行命令