简体   繁体   中英

CORS, prevent preflight of request with Authorization header

AngularJS transforms my POST request into OPTIONS when I add Authorization header:

  $http({
    url: ApiEndpoint + 'logout',
    method: 'POST',
    headers: {
      'Content-Type': 'application/x-www-form-urlencoded',
      'Authorization': UserService.getApiKey()
    }
  })

I'm developpling a hybrid mobile application with Ionic that I test in browser, os it's a CORS request.

I have already seen this question. The proposed workaround is to change Content-Type that I did and it worked without Authorization . With Authorization header the request is changed again to OPTIONS method.

Can you propose client solution please because a have no control over server API.

Thank you.

正如开发人员所说,CORS 请求将被预检,除非它是一个简单的请求

As others have noted, what you are seeing are CORS preflight requests.

You can't avoid them if you want to set Authorization header, but there are some workarounds if you control the backend (or are willing to use proxy). More info: https://damon.ghost.io/killing-cors-preflight-requests-on-a-react-spa/

In short:

  • CORS preflight headers can be cached by browser (set Access-Control-Max-Age header to number of seconds the response should be cached)
  • authorization header can be moved to URL params (if this is a good idea or not is a whole other discussion)
  • you can send JSON without proper headers (again, not the best of ideas, but...)
  • if it fits your use case, the simplest solution is to use proxy and thus avoid cross-origin requests completely

The following answer probably also applies to what you are doing - although your 'Content-Type' header should be OK if the data is being formatted properly:

How to skip the OPTIONS preflight request in AngularJS

To avoid preflight request, Just create your own controller and then, From the server code call the other origin REST service.

 <pre> public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException { String outputString = request.getParameter("data"); /*Refer the ajax data $.ajax({ url:"callRestApi", type:'POST', data: { "data":"data Value" }, beforeSend: function (xhr) { xhr.setRequestHeader ("Authorization", "Basic " + btoa(uname + ":" + passwd)); }, success:function(){ alert("Successfully created JSON data from DB"); }, error:function(textStatus, jqXHR){ alert("Unable to process some of the types, Please check logs for details."); } });*/ HttpURLConnection conn = null; URL url = new URL("");// just example, in your case pass the URL here conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("POST"); conn.setDoInput(true); conn.setDoOutput(true); conn.setRequestProperty("Content-Type", "");// just example, in your // case pass the content // type here conn.setRequestProperty("Authorization", "");// just example, in your // case pass the // authorization key // here DataOutputStream outputStream = new DataOutputStream( conn.getOutputStream()); outputStream.write(outputString.getBytes()); outputStream.flush(); outputStream.close(); StringBuffer sb = new StringBuffer(); if (conn != null && conn.getResponseCode() == 200) { byte[] buffer = new byte[8192]; int bytesRead; InputStream in = conn.getInputStream(); while ((bytesRead = in.read(buffer)) != -1) { sb.append(new String(buffer, 0, bytesRead, "UTF-8")); buffer = new byte[8192]; bytesRead = 0; } } System.out.println("Output ===>" + sb.toString()); } </pre>

In the above example there will not be any preflight Request. because of the Rest API call will be done in server side.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM