有什么办法可以为科尔多瓦提供自签名证书?

时间:2019-02-12 02:57:39

标签: visual-studio-cordova

我们有一个使用SSL的API,但是该证书目前尚未签名。有没有办法绕过自签名证书?

enter image description here

    $.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,它可以成功登录。

0 个答案:

没有答案