CORS
CORS (Cross-Origin Resource Sharing) is a system, consisting of transmittingHTTP headers, that determines whether browsers block frontend JavaScript code from accessing responses for cross-origin requests.
Thesame-origin security policy forbids cross-origin access to resources. But CORS gives web servers the ability to say they want to opt into allowing cross-origin access to their resources.
In this article
CORS headers
Access-Control-Allow-OriginIndicates whether the response can be shared.
Access-Control-Allow-CredentialsIndicates whether or not the response to the request can be exposed when the credentials flag is true.
Access-Control-Allow-HeadersUsed in response to a preflight request to indicate which HTTP headers can be used when making the actual request.
Access-Control-Allow-MethodsSpecifies the method or methods allowed when accessing the resource in response to a preflight request.
Access-Control-Expose-HeadersIndicates which headers can be exposed as part of the response by listing their names.
Access-Control-Max-AgeIndicates how long the results of a preflight request can be cached.
Access-Control-Request-HeadersUsed when issuing a preflight request to let the server know which HTTP headers will be used when the actual request is made.
Access-Control-Request-MethodUsed when issuing a preflight request to let the server know whichHTTP method will be used when the actual request is made.
OriginIndicates where a fetch originates from.
Timing-Allow-OriginSpecifies origins that are allowed to see values of attributes retrieved via features of theResource Timing API, which would otherwise be reported as zero due to cross-origin restrictions.