| Method and Description |
|---|
| okhttp3.CertificatePinner.check(String, Certificate...)
replaced with
CertificatePinner.check(String, List). |
okhttp3.OkHttpClient.Builder.sslSocketFactory(SSLSocketFactory)
SSLSocketFactory does not expose its X509TrustManager, which is
a field that OkHttp needs to build a clean certificate chain. This method instead must
use reflection to extract the trust manager. Applications should prefer to call OkHttpClient.Builder.sslSocketFactory(SSLSocketFactory, X509TrustManager), which avoids such reflection. |
Copyright © 2016. All Rights Reserved.