I am running into io.ktor.client.call.NoTransforma...
# ktor
l
I am running into io.ktor.client.call.NoTransformationFoundException: No transformation found: I checked the returning JSON and my object has the same fields .. any ideas on what I should try?
a
Probably, you didn't install ContentNegotiation plugin or didn't register one of the available converters. If you use kotlinx.serialization converter then your data classes should be marked with
Serializable
annotation.