如何在python 2.7.3中使用TLS1.1

时间:2017-02-10 08:44:36

标签: python ssl

我的服务器中有python 2.7.3,我想使用TLS1.1 [python2.7.3仅支持TLS1.0]。

我无法升级我的python版本,因为它会影响其他版本。 我尝试了后退,但它给出了错误。

这是我的代码

import backports.ssl as ssl
import requests

def do_it():  
    with requests.Session() as s:
        s.mount('https://', MyAdapter())
        url = 'https://ap4.salesforce.com/services/data/v35.0/sobjects'
        response = s.get(url,headers=_headers)
        response = requests.get(url,headers=_headers)

if __name__ == '__main__':
    do_it()

0 个答案:

没有答案