SSLError: sslv3 alert handshake failure

SSLError: sslv3 alert handshake failure

我正在对 branch.io

进行以下调用
import requests
req = requests.get('https://bnc.lt/m/H3XKyKB3Tq', verify=False)

它在我的本地机器上工作正常但在服务器上失败。

SSLError: [Errno 1] _ssl.c:504: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure

Openssl 版本:

本地:OpenSSL 0.9.8zg 2015 年 7 月 14 日

服务器:OpenSSL 0.9.8e-fips-rhel5 2008 年 7 月 1 日

Python:

本地:2.7.10 服务器:2.7.6

分支 io 服务器连接

Chrome 已验证 DigiCert SHA2 Secure Server CA 颁发了此网站的证书。服务器未提供任何证书透明度信息。

我尝试了urllib2,但结果是一样的。有帮助吗?

Jyo de Lys has identified the problem. The problem is described here and the solution is here。我执行了以下操作以使其正常工作:

  1. easy_install pyOpenSSL
  2. easy_install ndg-httpsclient
  3. easy_install pyasn1

如果您在使用 urllib2 时遇到此错误,您也需要升级到 python 2.7.9 或更高版本。