Access-Control-Request-Method
The Access-Control-Request-Method
request header is used when issuing a preflight request to let the server know which HTTP method will be used when the actual request is made. This header is necessary as the preflight request is always an OPTIONS
and doesn't use the same method as the actual request.
Syntax
Access-Control-Request-Method: <method>
Directives
- <method>
- One of the HTTP request methods, for example
GET
, POST
, or DELETE
.
Examples
Access-Control-Request-Method: POST
Specifications
|
Desktop |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
Basic support |
4 |
12 |
3.5 |
10 |
12 |
4 |
|
Mobile |
|
Android webview |
Chrome for Android |
Edge Mobile |
Firefox for Android |
Opera for Android |
iOS Safari |
Samsung Internet |
Basic support |
2 |
Yes |
Yes |
4 |
12 |
3.2 |
Yes |
See also