Hi, Is there a way to `receive<SomeFormObject>` in...
# ktor
m
Hi, Is there a way to
receive<SomeFormObject>
instead of using
_call_.receiveParameters()
from application/x-www-form-urlencoded POST requests
a
Out-of-the-box no, but you can make it work by defining a serializer for the
Parameters
type if you use the
kotlinx.serialization
framework.
👍🏾 1