Java SSLException: hostname in certificate didn't match for www.googleapis.com

醉酒当歌 提交于 2020-01-12 20:56:30

问题


Environment: Mac OS X Lion & Linux Debian squeeze/sid, JDK 1.7.0 & JDK 1.6.0_27

Error:

javax.net.ssl.SSLException: hostname in certificate didn't match: <www.googleapis.com/74.125.47.95> != <*.googleapis.com> OR <googleapis.com> OR <*.googleapis.com> .

I'm getting this error in all the above OS/JDK combinations.

Background: I am using google-api-services-customsearch and google-api-service-shopping jars to do webservice calls to Google. My calls were working correctly until a day ago. Since yesterday, the code has started to throw...

javax.net.ssl.SSLException: hostname in certificate didn't match: <www.googleapis.com/74.125.47.95> != <*.googleapis.com> OR <googleapis.com> OR <*.googleapis.com>
    at org.apache.http.conn.ssl.AbstractVerifier.verify(AbstractVerifier.java:228)
    at org.apache.http.conn.ssl.BrowserCompatHostnameVerifier.verify(BrowserCompatHostnameVerifier.java:54)
.....
    at com.google.api.services.shopping.Shopping$Products$List.execute(Shopping.java:156)

I tried importing the cert into the cacerts keystore using the instructions here, but that does not seem to solve the problem.


回答1:


For me the solution described in https://stackoverflow.com/a/3904473/419863 worked for me for this kind of error.




回答2:


AsyncHttpClient client = new AsyncHttpClient(true,80,443);



来源:https://stackoverflow.com/questions/7554907/java-sslexception-hostname-in-certificate-didnt-match-for-www-googleapis-com

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!