Java如何与https服务通信(StartCom+Nginx)


最近申请了一个startCom的一个免费ssl,然后配置到自己的nginx(Nginx转发8080的tomcat服务)上。

一开始用 unirest 想获取页面信息,结果现实这个错误:


 Caused by: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: 
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: 
unable to find valid certification path to requested target

后来在本地导入了两个StartCom的crt文件,所以这个错误就不存在了。

问题是:如果我想让别人也可以通过java代码来向这个https的服务发request,如何让他们正常获取数据?---- 难道需要我分享那两个crt文件?

PS:我发现直接java获取 https://github.com 一点问题也没有。
求大家指点,谢谢!

request java https

折笠富美子 10 years, 8 months ago

Root Cause是你申请的SSL证书不被你的系统所信任。解决方法是:
1. 换个证书
2. 手动跳过TrustManager的验证步骤(存在安全性风险)

sheaven answered 10 years, 8 months ago

java访问https的链接我曾经玩过,记得有两种办法,
一种是装那个网站的证书,类似 导入证书 介绍的,当时我也是通过这种方式实现了模拟登录某票网站。
第二种貌似是类似 绕过证书 ,绕过服务器证书检测

clipboard.png

右代宮戰人 answered 10 years, 8 months ago

Your Answer