跨域资源的凭据模式为“包括”时的Access-Control-Allow-Origin响应标头

时间:2018-07-18 05:44:14

标签: ajax api cors

我无法使用jquery ajax访问api,这是我的代码。

       $.ajax({
                async: true,
                method: "POST",
                crossDomain: true,
                headers: {
                  "Content-Type": "application/json"
                },
                xhrFields: {
                  withCredentials: true
                },
                url: "https://api.sample.com/bss/grp/noauth/GrpUserLogin",
                data: {
                        "streamNo":"**********************",
                        "clientId":"**********************",
                        "clientSecret":"******************",
                        "userCode":"***************",
                        "langType":"en-US",
                        "password":"**************************",
                        "partnerCode":"*****************",
                        "mvnoCode":"******************"
                },
                success: function(msg) {
                    alert(JSON.stringify(msg));
                }
            });

这是我不断遇到的错误。

enter image description here

请帮助我。

0 个答案:

没有答案