Hi. On HTTP clients, is there any way of specifyin...
# ktor
f
Hi. On HTTP clients, is there any way of specifying the used serializer per request and not via the HTTP client creation configuration? Relevant when the code using the HTTP client didn't control the HTTP client creation.
s
Instead of setting the request body to be an object for serialization, you could just set it to a ByteArray/String/OutputStream produced by the serializer of your choice
f
Thanks.