我们有一个使用SSL的API,但是该证书目前尚未签名。有没有办法绕过自签名证书?
$.ajax({
url: "https://xxxxx:50000/b1s/v1/Login",
xhrFields: {
withCredentials: true
},
data: jData,
type: "POST",
dataType: "json",
crossDomain: true,
error: function (xhr, status, error) {
alert(xhr);
},
success: function (json) {
alert("Success!");
}
});
我已经使用该jQuery创建了一个简单的asp.net MVC,它可以成功登录。