I am trying to access the custom server response body for 500 errors in class HTTPURLResponse
(URLResponse
) using URLSession.shared.dataTask
function. I can only have access to statusCode
and allHeaderFields
but it doesn't seem to help.
The equivalent in java for ex. is HttpURLConnection.getErrorStream()
, but I cannot find something similar in pure swift (I would like to solve this without using 3rd party libs).
How can I get the text response for the 500 error?