Simple CORS Requests (No Options Preflight)
Simple requests must meet ALL of the following criteria:
- Method: Only
GET,HEAD, orPOST - Headers: Only CORS-safelisted headers like:
AcceptAccept-LanguageContent-LanguageContent-Type(with specific values only)Origin(automatically added by browsers)
- Content-Type: Only these values:
application/x-www-form-urlencodedmultipart/form-datatext/plain
Backlinks