-
-
Save maiconhellmann/c61a533eca6d41880fd2b3f8459c07f7 to your computer and use it in GitHub Desktop.
import android.annotation.SuppressLint | |
import okhttp3.OkHttpClient | |
import java.security.cert.CertificateException | |
import javax.net.ssl.SSLContext | |
import javax.net.ssl.TrustManager | |
import javax.net.ssl.X509TrustManager | |
object UnsafeOkHttpClient { | |
fun Builder(): OkHttpClient.Builder { | |
try { | |
// Create a trust manager that does not validate certificate chains | |
val trustAllCerts = arrayOf<TrustManager>(@SuppressLint("CustomX509TrustManager") | |
object : X509TrustManager { | |
@SuppressLint("TrustAllX509TrustManager") | |
@Throws(CertificateException::class) | |
override fun checkClientTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) { | |
// N / A | |
} | |
@SuppressLint("TrustAllX509TrustManager") | |
@Throws(CertificateException::class) | |
override fun checkServerTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) { | |
// N / A | |
} | |
override fun getAcceptedIssuers(): Array<java.security.cert.X509Certificate> { | |
return arrayOf() | |
} | |
}) | |
// Install the all-trusting trust manager | |
val sslContext = SSLContext.getInstance("SSL") | |
sslContext.init(null, trustAllCerts, java.security.SecureRandom()) | |
// Create an ssl socket factory with our all-trusting manager | |
val sslSocketFactory = sslContext.socketFactory | |
val builder = OkHttpClient.Builder() | |
builder.sslSocketFactory(sslSocketFactory, trustAllCerts[0] as X509TrustManager) | |
// builder.hostnameVerifier { _, _ -> true } | |
builder.hostnameVerifier(hostnameVerifier = { _, _ -> true }) | |
return builder | |
} catch (e: Exception) { | |
throw RuntimeException(e) | |
} | |
} | |
} |
Hey gdebenito,
thanks for letting me know
I haven't used it for ages
I'll update it with your suggestion.
Thanks
it work, thanks
thx
How to call this to my main activity?
good job!
Missing import: import javax.net.ssl.HostnameVerifier
for me still not working. Showing same error again and again. Please help me out.
Missing import: import javax.net.ssl.HostnameVerifier
@vishavgoria added, thanks for letting me know.
@RavinCristiano May you share some logs? It's been a while since a last used this approach, I'm not sure it still works.
If anyone is wondering out there, it still works!
I've just updated it with suppress warnings and updated syntax.
how to use in react native?
how to use in react native?
You have to create a module/plugin(not sure how it's called) containing it.
I'd like to emphasize that it's just for testing purposes, do not use it on production. If your Https is not verified it can potentially open up doors for suspicious things. Be careful.
Thanks for your approach! I really need it! 😄
Line 34 doesn't work for me. I use this instead:
builder.hostnameVerifier ( hostnameVerifier = HostnameVerifier{ _, _ -> true })