PayPal SSL 证书更改:测试 Verisign G5 证书
PayPal SSL Certificate Change: Testing Verisign G5 Certificate
我正在尝试确认,我们的服务器将为 SSL 证书更改做好准备。
根据 www.sandbox.paypal.com 上的微型站点迁移已完成。
运行:
openssl s_client -CApath /etc/ssl/certs/ -connect www.sandbox.paypal.com:443
返回 0(正常)
此测试是否明确确认我们的服务器已准备就绪?
openssl 连接 return code(0)
对于此证书检查是肯定的,但您可能希望对调用进行一些细微的更改。
运行 使用以下行并再次尝试连接,(我添加了 –showcerts 参数以便打印出证书链,您可以轻松识别 Verisign G5 根证书那里)
openssl s_client -connect api-3t.sandbox.paypal.com:443 -showcerts -CApath /etc/ssl/certs/
我正在尝试确认,我们的服务器将为 SSL 证书更改做好准备。
根据 www.sandbox.paypal.com 上的微型站点迁移已完成。
运行:
openssl s_client -CApath /etc/ssl/certs/ -connect www.sandbox.paypal.com:443
返回 0(正常)
此测试是否明确确认我们的服务器已准备就绪?
openssl 连接 return code(0)
对于此证书检查是肯定的,但您可能希望对调用进行一些细微的更改。
运行 使用以下行并再次尝试连接,(我添加了 –showcerts 参数以便打印出证书链,您可以轻松识别 Verisign G5 根证书那里)
openssl s_client -connect api-3t.sandbox.paypal.com:443 -showcerts -CApath /etc/ssl/certs/