summaryrefslogtreecommitdiff
path: root/docs/user/authentication.rst
Commit message (Collapse)AuthorAgeFilesLines
* Prefer https over http for links in the documentationJon Dufresne2018-01-061-5/+5
| | | | | | - Fixed Read the Docs links - Fixed GitHub links - Fixed PyPI links
* Update authentication.rstKenneth Reitz2017-09-041-0/+2
|
* Explicitly mention OpenID ConnectNick Coghlan2017-01-101-5/+7
| | | | | | | OAuth 2 is the authentication protocol underpinning OpenID Connect. Mention that explicitly for the benefit of folks looking for information on using requests with OpenID Connect that don't yet know that OAuth 2 is the relevant underlying authentication protocol.
* Improve discoverability of OAuth 2 supportNick Coghlan2017-01-101-0/+14
| | | | | | | The previous summary gave the impression that requests-oauthlib only supports OAuth 1. This updates makes it clear that it also supports OAuth 2, and links directly to the use case specific authentication flow guides.
* Formatted the example to fix the color highlightingBård Aase2016-10-311-1/+1
|
* Docs: clarify the precedence of `auth=` over `netrc`Isa Hassen2015-12-211-2/+2
| | | | | | | | | | | | This closes #2062 by clarifying in the docs which auth header takes precedence: 1st auth= 2nd .netrc 3rd headers= This precedence order is already tested in test_requests.py, in the test_basicauth_with_netrc method. Perhaps we should add further tests for non-basic auth schemes.
* Fix a couple more malformed :meth: and :class: linksDavid Pursehouse2014-07-181-1/+1
| | | | Change-Id: Ie38844a40ec7a483e6ce5e56077be344242bcd99
* Add a simple example of custom authentication in the documentationDavid Pursehouse2013-07-221-2/+14
| | | | Refs #1471
* Wrap long lines in the authentication documentationDavid Pursehouse2013-07-221-2/+4
|
* Grammar fixes and suchKwpolska2013-07-201-1/+1
| | | | Signed-off-by: Kwpolska <kwpolska@gmail.com>
* Move netrc authentication documentation under the Basic Auth sectionDavid Pursehouse2013-07-191-11/+11
|
* Improve documentation of netrc authenticationDavid Pursehouse2013-07-191-0/+11
| | | | | | | | | | | | The documentation does not make it clear that when the credentials from netrc are used, Requests authenticates with HTTP Basic Auth. I just spent ages trying to figure out why it wasn't working, and it was because although the credentials in the netrc were correct, the server actually required HTTP Digest Auth. Add a section in the authentication documentation to make it clear that HTTP Basic Auth is used.
* Fixed example in authentication docsgiacomo2013-05-021-1/+1
|
* Fix Advanced docs Twitter Streaming exampleMike Helmick2013-04-111-2/+21
| | | | | Twitter API v1.1 Streaming now requires OAuth Authentication rather than XAuth. I believe v1 is being blacked out sometime at the beginning of May.
* Split authentication out into a separate file.Cory Benfield2012-12-171-0/+84