Reputation: 1587
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.
Upvotes: 18
Views: 34774
Reputation: 18271
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:
Upvotes: 8
Reputation: 1
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.
Upvotes: -3
Reputation: 1587
as Developer remarked, the CORS request will be preflighted unless it is a simple request.
Upvotes: 7