小编典典

在飞行前使用带有HTTP 401的Ajax CORS请求

ajax

我现在奋斗了几个小时。我想向另一个域发出简单的Ajax请求,但始终出现http 401错误:

jQuery(document).ready(function($){
  var challengeid = $('#codepressHook').data('challengeid');
  var clicked = false;
  $('#codepressHook').click(function(){
    if(!clicked){
      $.ajax({
        url: "https://dev.radbonus.com/admin/affiliate-connections/retrieveSingle/"+challengeid+".json",
        method: "GET",
        dataType: "json",
        jsonp: false,
        contentType: "application/json",
        xhrFields: {
          withCredentials: true
        },
        beforeSend: function(xhr){
          xhr.setRequestHeader("Authorization", "Basic "+ btoa(username+":"+password));
        },
        success: function(data){
          $('#codepressHock').html(data.data.code);
        },
        error: function(error){
          alert(error);
        }
      });
    }
  });
});

我在服务器端设置了所有相关的CORS标头。这是网络流量:

Request URL:https://dev.radbonus.com/admin/affiliate-connections/retrieveSingle/45.json
Request Method:OPTIONS
Status Code:401 Unauthorized
Remote Address:185.102.94.230:443
Referrer Policy:no-referrer-when-downgrade

Response Headers
view source
Access-Control-Allow-Credentials:true
Access-Control-Allow-Headers:Content-Type, X-Requested-With, Authorization, Origin
Access-Control-Allow-Methods:POST, GET, PUT, DELETE, OPTIONS
Access-Control-Allow-Origin:http://radbonus.com
Access-Control-Max-Age:31536000
Content-Length:463
Content-Type:text/html; charset=iso-8859-1
Date:Sat, 24 Jun 2017 11:25:33 GMT
Server:Apache/2.4.18 (Ubuntu)
WWW-Authenticate:Basic realm="Admin"

Request Headers
view source
Accept:*/*
Accept-Encoding:gzip, deflate, sdch, br
Accept-Language:de-DE,de;q=0.8,en-US;q=0.6,en;q=0.4
Access-Control-Request-Headers:authorization,content-type
Access-Control-Request-Method:GET
Connection:keep-alive
Host:dev.radbonus.com
Origin:http://radbonus.com
Referer:http://radbonus.com/plugintest/
User-Agent:Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36

我知道有很多关于此主题的文章,但似乎我缺少一些简单的东西。有人可以帮我吗?


阅读 223

收藏
2020-07-26

共1个答案

小编典典

更新
看起来我不对。Authorization标头从不发送OPTIONS请求。
-你需要确保你的服务器不响应401OPTIONS请求。

我不知道您的服务器用什么语言编写,但是您以错误的方式实现了授权-应该从auth中排除OPTIONS方法。

以下是过时的答案:

您的服务器端要求对此请求进行HTTP基本身份验证。而且您不提供凭据。401错误与CORS无关;这仅表示服务器选择不授权您的请求,因为您未提供身份验证凭据。

如果您尝试直接在浏览器中打开此URL(例如https://dev.radbonus.com/admin/affiliate-
connections/retrieveSingle/1.json),则会要求您输入login&password,这是浏览器处理401的方式WWW- Authenticate标头错误。

请注意,Authorization标题实际上不包含在您的请求中。因此beforeSend,除了使用钩子,您可能应该直接在调用中包含标头:

headers: {
    'Authorization': 'Basic ' + btoa(username+':'+password),
},

并确保Authorization标题出现在您的请求中。

2020-07-26