The Access-Control-Expose-Headers
response header indicates which headers can be exposed as part of the response by listing their names.
By default, only the 6 simple response headers are exposed:
If you want clients to be able to access other headers, you have to list them using the Access-Control-Expose-Headers
header.
Header type | Response header |
---|---|
Forbidden header name | no |
Access-Control-Expose-Headers: <header-name>, <header-name>, ...
To expose a non-simple response header, you can specify:
Access-Control-Expose-Headers: Content-Length
To additionally expose a custom header, like X-Kuma-Revision
, you can specify multiple headers separated by a comma:
Access-Control-Expose-Headers: Content-Length, X-Kuma-Revision
Specification | Status | Comment |
---|---|---|
Fetch The definition of 'Access-Control-Expose-Headers' in that specification. | Living Standard |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | Servo |
---|---|---|---|---|---|---|---|
Access-Control-Expose-Headers | 4 | 12 | 3.5 | 10 | 12 | 4 | ? |
Feature | Android | Chrome for Android | Edge Mobile | Firefox for Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Access-Control-Expose-Headers | 2.1 | (Yes) | (Yes) | 1.0 | (Yes) | 12 | 3.2 |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers