使用Ktor客户端发布带有图像的请求

时间:2019-03-25 12:10:44

标签: kotlin ktor

我在发送带有文件作为正文参数之一的http请求时遇到麻烦。 API返回的响应不是我所期望的,因此我认为代码有问题。

suspend fun post(url: String, bodyParameters: MutableMap<String, Any>, headerParameters:
    MutableMap<String, String>? = null): HttpResponse?{

        val client = HttpClient()

        try {
            val call = client.call(url) {
                method = HttpMethod.Post
                body = MultiPartFormDataContent(
                    formData {
                        bodyParameters.forEach{(key, value) ->
                            when(value) {
                                is String -> {
                                    append(key, value)
                                }

                                is File -> {
                                    append(key, value.inputStream().asInput())
                                }
                            }
                        }
                    }
                )
            }
            if(call.response.status.value == 500) {
                return null
            }
            return call.response

正在返回的响应状态是未发送文件时的预期状态。有什么想法为什么不起作用? 还有其他方法可以通过Ktor做到这一点吗?

0 个答案:

没有答案