diff --git a/docs/user/authentication.rst b/docs/user/authentication.rst index 4d4040eb..0737bd31 100644 --- a/docs/user/authentication.rst +++ b/docs/user/authentication.rst @@ -19,13 +19,14 @@ the simplest kind, and Requests supports it straight out of the box. Making requests with HTTP Basic Auth is very simple:: >>> from requests.auth import HTTPBasicAuth - >>> requests.get('https://api.github.com/user', auth=HTTPBasicAuth('user', 'pass')) + >>> basic = HTTPBasicAuth('user', 'pass') + >>> requests.get('https://httpbin.org/basic-auth/user/pass', auth=basic) In fact, HTTP Basic Auth is so common that Requests provides a handy shorthand for using it:: - >>> requests.get('https://api.github.com/user', auth=('user', 'pass')) + >>> requests.get('https://httpbin.org/basic-auth/user/pass', auth=('user', 'pass')) Providing the credentials in a tuple like this is exactly the same as the