问题:
使用自定义证书的https链接接入项目,运行项目时报错:
javax.net.ssl.SSLPeerUnverifiedException: Hostname xxx not verified
分析:
CommonName和“IP地址”,和服务器的ip地址不一致文章来源:https://www.toymoban.com/news/detail-518533.html
解决:
方法1,通过重新制作证书,保证CN,IP地址同服务器IP地址一致
方法2,允许所有证书,给builder设置hostnameVerifier如下:文章来源地址https://www.toymoban.com/news/detail-518533.html
okHttpClient = new OkHttpClient.Builder()
.readTimeout(READ_TIME_OUT, TimeUnit.MILLISECONDS)
.connectTimeout(CONNECT_TIME_OUT, TimeUnit.MILLISECONDS)
.addInterceptor(mRewriteCacheControlInterceptor)
.addNetworkInterceptor(mRewriteCacheControlInterceptor)
.addInterceptor(headerInterceptor)
.addInterceptor(logInterceptor)
.hostnameVerifier(new AllowAllHostnameVerifier())
.cache(cache)
.build();
到了这里,关于javax.net.ssl.SSLPeerUnverifiedException: Hostname xxx not verified的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!