Answers for "okhttp android"

5

okhttpclient android dependency

implementation("com.squareup.okhttp3:okhttp:4.8.1")
Posted by: Guest on September-11-2020
1

okhttp3, android okhttp

compile 'com.squareup.okhttp3:okhttp:3.6.0'
Posted by: Guest on September-20-2021
0

okhttp kotlin example

private val client = OkHttpClient()

  fun run() {
    val request = Request.Builder()
        .url("http://publicobject.com/helloworld.txt")
        .build()

    client.newCall(request).enqueue(object : Callback {
      override fun onFailure(call: Call, e: IOException) {
        e.printStackTrace()
      }

      override fun onResponse(call: Call, response: Response) {
        response.use {
          if (!response.isSuccessful) throw IOException("Unexpected code $response")

          for ((name, value) in response.headers) {
            println("$name: $value")
          }

          println(response.body!!.string())
        }
      }
    })
  }
Posted by: Guest on August-31-2020

Browse Popular Code Answers by Language