我正在尝试向具有过期证书的网址发送Https帖子请求。有没有办法绕过Javascript中的安全性?我能够用C#和Java做到这一点。
function post()
{
var xmlhttp;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST","https://something.com:8443/trigger",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("code=6644&workflow.reponame=test");
}
答案 0 :(得分:1)
你不能这样做。简单地说:在别人的浏览器中,这不是你的决定。