我如何使用 Ktor Client For Kotlin-multiplatform 执行此 cURL?

how can i excute this cURL with Ktor Client For Kotlin-multiplatform?

curl -X POST
-H "X-Parse-Application-Id: ehUKQVObBspFk0MBFNSSg3MwLJofpeoFtDhQNIgS"
-H“X-Parse-REST-API-密钥:9HNNfwY6ITbUGqsfMSJS3OlQVqYfm5EAiZWVe012”
-H“内容类型:application/json”
-d "{ "file_type":"一个字符串","encryption_tool_id":"一个字符串","user_id":"一个字符串","query":"一个字符串“}”
https://encyriptionapp.b4a.io/classes/UserFiles

val client = HttpClient(Apache) {}

client.post<String>("https://encyriptionapp.b4a.io/classes/UserFiles") {
    headers.append("X-Parse-Application-Id", "ehUKQVObBspFk0MBFNSSg3MwLJofpeoFtDhQNIgS")
    headers.append("X-Parse-REST-API-Key", "9HNNfwY6ITbUGqsfMSJS3OlQVqYfm5EAiZWVe012")
    contentType(ContentType.Application.Json)
    body = """
        { "file_type":"A string","encryption_tool_id":"A string","user_id":"A string","query":"A string" }
    """.trimIndent()
}

此外,您可以使用 JsonFeature 将对象序列化为 JSON。