Tick it if your code uses <code>credentials: 'include'</code> (or <code>withCredentials</code>). It changes the rules: the origin can no longer be <code>*</code>, wildcards stop working, and the server must answer <code>Access-Control-Allow-Credentials: true</code>.
The REQUEST ones, not the response ones. They decide whether the browser sends an OPTIONS first, and they are what "Access-Control-Allow-Headers" has to cover.
application/json. Your server has to answer THAT OPTIONS too, not only the real request.CORS headers found
Access-Control-Allow-Originhttps://myapp.comPermite solo el origen: https://myapp.comAccess-Control-Allow-MethodsPOSTMétodos permitidos: POSTAccess-Control-Allow-HeadersContent-TypeCabeceras permitidas en la petición: Content-TypeSuggested headers for your server
Access-Control-Allow-Origin: https://myapp.com Vary: Origin Access-Control-Allow-Methods: POST Access-Control-Allow-Headers: Content-Type Access-Control-Max-Age: 86400