0

作为 kotlin 和 http4k 的初学者,我正在尝试阅读 jenkins 中构建作业的 json 响应。我的示例代码如下

val request = Request(Method.GET, "https://myjenkins.com/api/json")
        .header("Authorization", "Basic "+Base64.getEncoder().encodeToString("username:token".toByteArray()))

val client: HttpHandler = ApacheClient()

println(client(request))

我正在寻找一种方法来读取Responsefrom client(request)org.json.JSONObject这样我就可以从中读取值。

我正在寻找一些可以帮助我理解如何做到这一点的指针。

4

0 回答 0