Hey guys, I am basically doing a post request with...
# ktor
m
Hey guys, I am basically doing a post request with ktor httpClient and I get back a HttpResponse successfully. With that I can see the response status and headers but I cannot see the body. How can I find the body?
j
You should be able to read the response by using the read* methods, for example:
response.readText(Charset.forName("UTF-8"))
m
It worked out for me, thanks!