推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
yakczh
V2EX  ›  Python

request访问https 提示 提示 requests.exceptions.SSLError: no appropriate commonName or subjectAltName fields were found

  •  
  •   yakczh · Dec 19, 2013 · 4858 views
    This topic created in 4552 days ago, the information mentioned may be changed or developed.
    r = requests.get(url)
    print(r.text)

    提示 6:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

    cafile = 'c:\\nginx\\conf\\cert.crt'
    r = requests.get(url,verify=cafile)
    print(r.text)


    提示 requests.exceptions.SSLError: no appropriate commonName or subjectAltName fields were found
    1 replies    1970-01-01 08:00:00 +08:00
    yakczh
        1
    yakczh  
    OP
       Dec 19, 2013
    verify='my-server.crt'
    response = requests.get(url, verify=verify)


    print(response.text)

    把自签名ca的crt换成服务器的证书 就可以了
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   926 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 19:28 · PVG 03:28 · LAX 12:28 · JFK 15:28
    ♥ Do have faith in what you're doing.