None
FI
How to Debug Any CORS Error
[]
HTTP Toolkit
When a request is preflighted, before sending the real request the browser sends an OPTIONS request with headers explaining the real request that it wants to send. You're sending a preflighted request, the preflight went OK and the request was sent, but the headers on the final response for the real request don't allow you to read it. If the page wants to send custom headers, then it will include Access-Control-Request-Headers listing the headers in the preflight OPTIONS request, and the server must include a Access-Control-Allow-Headers header that includes all those headers in the response.