Created
July 19, 2020 06:48
-
-
Save yschimke/796e58a6152137bdcd7d2f9d63e26363 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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