summaryrefslogtreecommitdiff
path: root/oauthlib/oauth1/rfc5849/endpoints/authorization.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed sorted import for < py37Anton Ruhlov2020-04-101-1/+1
|
* Sorted oauthlib imports per isort 4.3.21Anton Ruhlov2020-04-101-1/+2
|
* The future is nowHugo2019-08-151-2/+0
|
* Drop support for legacy Python 2.7Hugo2019-08-151-5/+1
|
* redid the docstring fixesjonathan vanasco2018-09-101-1/+2
|
* Sorted imports.Omer Katz2017-09-171-1/+2
|
* Auto pep8 changes throughout the code base.Ib Lundgren2014-09-241-12/+16
|
* Move docstrings above `from __future__` imports.Kirill Spitsin2014-04-151-2/+1
| | | | | | Docstrings are considered as such by python only if they are the first statement in the file/block. Even if they are preceded by a `from __future__` import they are interpreted as just a string.
* Restructure API docs to mimic code structure more.Ib Lundgren2013-09-171-1/+1
|
* OAuth1 endpoint documentation cleanup.Tyler Jones2013-08-011-11/+29
|
* #199 Proposed API changes for endpoints.Tyler Jones2013-08-011-10/+7
|
* Fix for python3.Tyler Jones2013-07-261-3/+5
|
* Added tests.Tyler Jones2013-07-261-3/+3
|
* The authorization endpoint now returns a 200 on "oob" oauth_callbacks.Tyler Jones2013-07-261-3/+9
|
* Changed exception message in authorization.py; changed a validation ↵Kyle2013-07-231-2/+2
| | | | parameter in resource.py from request_token to access_token; updated authors
* Made sure all endpoints used the self._create_request() method and referred ↵Kyle2013-07-191-7/+7
| | | | to request.resource_owner_key instead of request.oauth_token
* Update authorization.py - use the _create_request method and change ↵Kyle Valade2013-07-181-8/+8
| | | | | request.oauth_token attribute to resource_owner_key The Request() constructor doesn't give the request.oauth_token attribute that the create_authorization_response relies on. The _create_request() method doesn't either, but it gives something equivalent.
* Endpoint source documentation.oauth1_provider_revampIb Lundgren2013-06-201-3/+72
|
* Authorization endpoint. #95Ib Lundgren2013-06-181-0/+66