我正在尝试通过ajax jquery向https上托管的服务器发出管理员请求。不知何故,头部认证参数未在请求中传递,我收到401错误。 我无法传递标头授权信息,我收到401未经授权的错误。如何在标题中传递授权? 以前任何机构都面临这个问题,任何帮助都会受到赞赏。感谢。
以下是我的ajax请求::::
$.ajax({
beforeSend: function(xhrObj){
xhrObj.setRequestHeader("Authorization","Basic YWRtaW46YWRtaW4=");
xhrObj.setRequestHeader("Access-Control-Allow-Origin","*");
xhrObj.setRequestHeader("Access-Control-Allow-Methods","POST, GET, OPTIONS, PUT, DELETE");
xhrObj.setRequestHeader("Access-Control-Allow-Headers","Content-Type");
} ,
url: '/test.html',
type : "POST",
dataType : "json",
crossDomain: true,
xhrFields: {
withCredentials: true
},
contentType: "application/json" ,
data: {
'name' : 'test123456',
'description' : 'test' ,
'owner' : 'admin' ,
'accessRestriction' : 'VIEW'
},
cache : true,
success : function(service_data) {
alert("success");
},
error : function(msg) {
alert("error");
}
});
答案 0 :(得分:0)
如果您在允许标头中提供content-type
,则还需要通过授权。