2016-07-25 73 views
0

我剛剛嘗試了郵遞員中cookie的jira身份驗證API,並且它工作得非常好。我使用了其他API調用中使用的會話ID獲取cookie。 但是,當我嘗試在angularjs完全相同的POST調用,它根本不工作。無法使用angular JS(基於cookie的身份驗證)來驗證jira API

對角的js代碼$ HTTP調用

$http({ 
    method: "POST", 
    url: "http://gsd.company.com/jira/rest/auth/1/session", 
    data:JSON.stringify({"username": "[email protected]", "password": "passwordrandom"}), 
    headers:{ 
     "Content-Type": "application/json" 
    } 
}).then(function successCallback(response){ 

    console.log(response); 

},function errorCallback(response){ 

    console.log("err"); 
    console.log(response); 

}); 

和我得到的控制檯

XMLHttpRequest cannot load 
http://gsd.company.com/jira/rest/auth/1/session. Response for preflight is invalid (redirect) 

我已經試過幾乎所有的解決方案在那裏就像在客戶端設置訪問頭以下錯誤通話,但沒有任何作品提前致謝?

回答

0

應該僅僅是

data:{""username": "[email protected]", "password": "passwordrandom"} 
+0

沒有工作。仍然得到相同的錯誤 –

相關問題