Skip to content Skip to sidebar Skip to footer

Is It Possible To Add A Request Header To A Cors Preflight Request?

I have a website that accesses an API from an external server (not the server that serves the website) via a plain XmlHttpRequest (see below). That API requires an API key for acce

Solution 1:

The CORS preflight OPTIONS request is completely controlled by the browser — so it’s not possible to add any request headers to it. See https://fetch.spec.whatwg.org/#cors-preflight-fetch. That’s why any endpoint you send a request to must be configured to allow unauthenticated OPTIONS requests, and respond to them with a 200 OK — at least as long as your request triggers a preflight (which it always will if you add any custom request headers, such as the x-api-key header in the question).


Post a Comment for "Is It Possible To Add A Request Header To A Cors Preflight Request?"