我不知道如何在Ktor中发送application/x-www-form-urlencoded POST请求。我在Ktor的文档中看到了一些submitForm帮助器,但它们没有按预期发送请求。

我想要的是复制此 curl 线的行为:

curl -d "param1=lorem&param2=ipsum" \
     -H "Content-Type: application/x-www-form-urlencoded; charset=UTF-8" \
     https://webservice/endpoint

我的依赖是io.ktor:ktor-client-cio:1.0.0

最佳答案

经过几次尝试,我设法使用以下代码发送请求:

val url = "https://webservice/endpoint"
val client = HttpClient()
return client.post(url) {
    body = FormDataContent(Parameters.build {
        append("param1", "lorem")
        append("param2", "ipsum")
    })
}

关于kotlin - 发送Ktor中的application/x-www-form-urlencoded,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53595544/

10-10 14:33