1

我需要使用 Ktor 客户端发出 GET 请求。我正在使用的 URL 作为字符串从我无法控制的来源传递给我。URL 字符串包含由 Ktor 客户端编码的逗号,%2C这会破坏后端逻辑。有没有办法阻止 Ktor 对 URL 进行编码?

举例说明:

client.get {
    url(url)
    accept(ContentType.Application.Json)
    method = HttpMethod.Get
}

在下面的代码中,值为urlishttps://my.domain/someData,someMoreData但传出请求 URL 为https://my.domain/someData%2CsomeMoreData

4

1 回答 1

0

这不是一个真正的答案,但评论不允许发布大块代码。

在对其进行了更多调查之后,我实际上无法重现您所描述的行为:

fun main() {
    runBlocking {
        val server = embeddedServer(Netty, port = 8080) {
            routing {
                trace {
                    application.log.debug(it.buildText())
                }
                get("*") {
                    context.respond(context.request.path())
                }
            }
        }
        server.start()

        val client = HttpClient()
        val url = "http://localhost:8080/someData,someMoreData"
        val r : String = client.get {
            url(url)
            method = HttpMethod.Get
        }
        println(r) // Getting /someData,someMoreData, meaning not encoded
    }
}

这是使用implementation "io.ktor:ktor-client-okhttp:1.2.6"

你用的是什么客户端引擎?

于 2019-12-25T11:12:48.893 回答