https://kotlinlang.org logo
#ktor
Title
# ktor
d

df

11/14/2020, 9:10 PM
hey there. Any chance to disable the json serialization for a single request? I have to deal with an api that is supposed to speak json but expects one serialized json object / line in the body when performing batch operations 😕
g

gildor

11/15/2020, 11:43 PM
You can use different content type instead of application/json
Also you always can read/write bytes or string manually from request/response
3 Views