From 15396fb2f90e30f1abe7ed63ddcf07f7706ba75b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 7 Jan 2012 13:44:09 -0500 Subject: [PATCH] Update docs/user/advanced.rst --- docs/user/advanced.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index 216367a..d1c2cd0 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -53,9 +53,9 @@ Requests can verify SSL certificates for HTTPS requests, just like a web browser >>> requests.get('https://kennethreitz.com', verify=True) requests.exceptions.SSLError: hostname 'kennethreitz.com' doesn't match either of '*.herokuapp.com', 'herokuapp.com' -I don't have SSL setup on this domain, so it fails. Excellent. I do have certs for httpbin.org though:: +I don't have SSL setup on this domain, so it fails. Excellent. Github does though:: - >>> requests.get('https://httpbin.org', verify=True) + >>> requests.get('https://github.com', verify=True) You can also pass ``verify`` the path to a CA_BUNDLE file for private certs. You can also set the ``REQUESTS_CA_BUNDLE`` environment variable. -- 2.34.1