Response usage
val response = httpGet { ... }
response.use {
...
}val response = httpGet { ... }
val dataAsJson: JsonNode = response.asJson()
val dataAsString: String? = response.asString()
val dataAsStream: InputStream? = response.asStream()Last updated
Was this helpful?