Cross-Origin Resource Sharing (CORS)
- •
What it is
- •
an HTTP-header mechanism through which a server permits browser scripts from specified origins to access responses
- •
- •
- •
Preflight
- •
the browser sends an
OPTIONSrequest before certain cross-origin requests to check permission
- •
- •
- •
Source
- •
https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS
- •
- •
Related