Hello,
I'm running Swagger on localhost:80 and my API documentation on localhost:38080. I've set the CORS headers and I don't get any errors about that in Chrome nor Firefox consoles.
However, when I make a request to an API, the Swagger UI won't show me the response body, code nor headers.
From the console, I see that the browser makes an OPTIONS request to the API's URL and then a GET (which is the method I want to invoke). I see that the GET returns a 200 but the Swagger UI doesn't reflect it. My Firefox console shows the following:
[10:54:09.840] bodyParam = null
[10:54:09.841] content type = application/json
[10:54:09.841] content type is now = false
Do someone have any hint about what could be happening here?
Many thanks,
Ariel