禁用ajax 302重定向

时间:2015-08-10 10:31:02

标签: jquery ajax redirect post sharepoint

我必须对Microsoft登录服务(在线sharepoint)进行POST,该服务在响应中返回2个cookie,可用于数据请求。

然而,它返回302(暂时移动)消息,它尝试重定向到无效页面,这使得ajax请求失败并跳转到“错误”部分,尽管第一个请求具有有效和我可以使用的正确响应数据。

function getFedAuthCookies(token)
{
$.support.cors = true; // enable cross-domain query

$.ajax({
    type: 'POST',
    data: token,
    url: "https://mysharepoint.sharepoint.com/_forms/default.aspx?wa=wsignin1.0", //loginUrl,  
    contentType: "application/json;odata=verbose",   //'application/x-www-form-urlencoded',
    dataType: 'json',
    headers: {
        "Accept": "application/json;odata=verbose"
    },   
    // dataType: 'html', // default is OK: Intelligent Guess (xml, json, script, or html)
    success: function (data, textStatus, result) {
        alert("WORKED");
    },
    error: function (result, textStatus, errorThrown) {
        alert("FAILED");
        reportError(result, textStatus, errorThrown);
    }
});

}

这是它在浏览器开发控制台(网络面板)中的外观

enter image description here

如何在第一个请求时停止,该数据包含正确的数据和302消息?

0 个答案:

没有答案