Hello, I have an issue sending a post request with...
# ktor
m
Hello, I have an issue sending a post request with ktor, in the documentation I see this example:
Copy code
client.request {
    method = <http://HttpMethod.Post|HttpMethod.Post>
    body = FormDataContent(formData {
        append("key", "value")
    })
}
But when I do it, I get an error: https://ss.nohus.eu/13500/dd39eece What am I doing wrong? Thank you.