1π
β
- See my response to your 3rd point.
- Yes. Your server, your rules.
- Setting both
Access-Control-Allow-Credentials: true
andAccess-Control-Allow-Headers: *
is never useful:
- For security reasons, browsers that support the wildcard in
Access-Control-Allow-Headers
treat the*
value literally in the case of credentialed requests. - Browsers that donβt support the wildcard in
Access-Control-Allow-Headers
always treat the*
value literally.
π€jub0bs
Source:stackexchange.com