方法类型GET中的ajax调用中的ERR_INSECURE_RESPONSE

时间:2017-07-24 22:09:40

标签: jquery ajax

我正在使用HTTPS Azure Odata Web Api。和一个HTTPS MVC UI应用程序 当我尝试访问Web API中的方法时,它会抛出错误

"ERR_INSECURE_RESPONSE"
EG . 
**WEB API Method** 
GetDetails()
{
return "okay ";
}

UI Ajax call
var Url = "https://XXXXXXX.com/" + 'odata/XXXXX';;

$.ajax({
                url: Url,
                async: false,
                dataType: "jsonp",
                //contentType: "application/json; charset=utf-8",

                type: "GET",
                headers: {
                    'Authorization': 'Bearer ' + result.Token
                },

                success: function (data) {
                    alert("success");


                },
                error: function (error) {
                    alert(error);
                },
                failure: function (error) {
                    alert(error);
                }
            });

我也试过使用数据类型作为JSON 我也试过添加内容类型。

1 个答案:

答案 0 :(得分:0)

我得到了一次,然后重新启动浏览器解决了它。我认为这与你的证书有关