Skip to content

Instantly share code, notes, and snippets.

@yschimke
Created July 19, 2020 06:48
Show Gist options
  • Save yschimke/796e58a6152137bdcd7d2f9d63e26363 to your computer and use it in GitHub Desktop.
Save yschimke/796e58a6152137bdcd7d2f9d63e26363 to your computer and use it in GitHub Desktop.
package okhttp3.tls
import okhttp3.OkHttpClient
import okhttp3.Request
import okhttp3.tls.HandshakeCertificates.Builder
fun main() {
val request = Request.Builder()
.url("https://httpbin.org/get")
.build()
var client = OkHttpClient();
var response = client.newCall(request).execute()
println(response.handshake?.peerPrincipal) // CN=httpbin.org
println(response.code)
val certificates = Builder()
.addInsecureHost("httpbin.org")
.build()
client = OkHttpClient.Builder().sslSocketFactory(certificates.sslSocketFactory(),
certificates.trustManager
).build();
response = client.newCall(request).execute()
println(response.handshake?.peerPrincipal) // null
println(response.code)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment