Hi. How to parse form data from POST body (urlenco...
# ktor
d
Hi. How to parse form data from POST body (urlencoded) into data class?
d
call.receive<ValuesMap>
works for multi-part encoded form data, it might work in this case also, not sure.
d
call.receive<ValuesMap> works, I used that... i was wandering if it currently can be received in custom data class (like Location data)..