Hi Kotliners. Does Ktor support chunk content transmission?
I am using
HttpClient(CIO)
, and my client speaks with a server that delivers a chunked JSON. I have been trying to change headers, response model, etc… But it does not seem to help. I am receiving the following error:
Copy code
NoTransformationFoundException: No transformation found: class io.ktor.utils.io.ByteBufferChannel -> class com.my.class
I have seen this when trying ktor cannot serialize something in the data class, but right now I am using an empty class, which should be “serializable”