(Succeeded differently, but the questions still st...
# ktor
m
(Succeeded differently, but the questions still stands why the example from the documentation doesn't work, the
formData
function is very nice, why doesn't it work?)
b
The
formData { ... }
DSL returns you a
List
of parts to be used with
MultiPartFormDataContent
which returns
multipart/form-data
. You can use
FormDataContent
which returns
application/x-www-form-urlencoded
with
Parameters.build { ... }