[JavaScript] CORS

yejichoi·2022년 12월 22일
0

Cross-Origin Resource Sharing(CORS)

an HTTP-header based mechanism that allows a server to indicate any origins (domain, scheme, or port) other than its own from which a browser should permit loading resources. CORS also relies on a mechanism by which browsers make a "preflight" request to the server hosting the cross-origin resource, in order to check that the server will permit the actual request. In that preflight, the browser sends headers that indicate the HTTP method and headers that will be used in the actual request.

  • browsers restrict cross-origin HTTP requests initiated from scripts

📍i.e) XMLHttpRequest and the `Fetch API follow the same-origin policy. This means that a web application using those APIs can only request resources from the same origin the application was loaded from unless the response from other origins includes the right CORS headers

📍i.e) the front-end JavaScript code served from https://domain-a.com uses XMLHttpRequest to make a request for https://domain-b.com/data.json

Reference : https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

0개의 댓글