-1

I'm at the end of my rope on this one... i'm running into a cors issue in safari related to a content-type header. I own the backend and have confirmed it is returning "*" for Access-Control-Allow-Headers. Anyone have any ideas what this could be?

chrome request/response

safari request/response

vv1z
  • 467
  • 4
  • 8

1 Answers1

0

Turns out the issue was safari & ie don't honor * for this header so: Access-Control-Allow-Headers: "*" is rejected. After explicitly adding 'accept' and 'content-type' this was resolved: Access-Control-Allow-Headers: "*, accept, content-type"

vv1z
  • 467
  • 4
  • 8