summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Updated AUTHORS with Josh TurmelJosh Turmel2014-04-121-0/+1
|/ | | * Coincides with signed token change that was accepted recently
* Merge pull request #240 from asteinlein/masterIb Lundgren2014-04-122-3/+48
|\ | | | | Support for scopes being arbitrary objects
| * Support for scopes being arbitrary objectsAnders Steinlein2014-03-272-3/+48
| | | | | | | | | | | | Improves list_to_scope() and scope_to_list() to deal with objects, by calling str()/unicode() on elements in the lists instead of assuming they are string/unicode objects.
* | Merge pull request #237 from jturmel/add_crypto_token_generatorIb Lundgren2014-04-128-18/+207
|\ \ | | | | | | Add crypto token capability
| * | Add pyjwt to tox.inijturmel2014-03-301-0/+1
| | |
| * | Changes per PR commentsjturmel2014-03-294-43/+45
| | | | | | | | | | | | | | | | | | | | | | | | * Rename methods from crypto to signed * Since generating a signed token to be used as a refresh token could be a bit overkill in terms of length/storage, allow setting of refresh token generator separately, or it defaults to whatever the other token generator was set to * Simplify tests per PR comments
| * | Move setup.py requirementsjturmel2014-03-222-4/+10
| | | | | | | | | | | | | | | * Moved requires for cryptotoken changes so that you don't have to install the dependencies if you aren't going to use cryptotokens
| * | Require pycrypto and pyjwtjturmel2014-03-191-3/+2
| | |
| * | Change how arbitrary claims are set on crypto tokenjturmel2014-03-183-8/+14
| | |
| * | Use the to_unicode helperjturmel2014-03-171-2/+2
| | |
| * | Add crypto token capabilityjturmel2014-03-176-4/+179
| |/ | | | | | | | | | | | | | | | | | | | | * Add a method to generate crypto tokens for use as Bearer tokens * Add a method to verify an incoming crypto token and unpack the header and claims * Uses the PyJWT library This is not JWT token support, merely a way to generate Bearer tokens that won't have to be stored in a database but can self-validate and store additional information that you see fit.
* | Merge pull request #239 from aspiredu/masterIb Lundgren2014-04-124-29/+143
|\ \ | |/ |/| Add support for custom signature methods to `oauth1.Client`
| * Allowing custom signature methods to be registered and used...David Rogers2014-03-252-6/+32
| | | | | | | | The "PIZZA" signature method signs all requests with the string "PIZZA" as a trivial example of a custom signing method.
| * Enforcing a common interface for `sign_*()` methods...David Rogers2014-03-252-23/+111
|/ | | | In order to support adding custom signature methods, the current signature methods -- HMAC-SHA1, RSA-SHA1, and PLAINTEXT -- need to be implemented with a common interface. In a previous attempt, I tried changing those functions directly, but there are too many dependencies on their current signatures. By shimming them instead with these thin wrappers, I can provide the common interface I need without breaking everything else in the library.
* Merge pull request #233 from kjoconnor/fixing-typosIb Lundgren2014-02-139-15/+15
|\ | | | | Fixing some typos
| * Fixing some typosKevin O'Connor2014-02-129-15/+15
| |
* | Merge pull request #232 from diox/fix-docstrings-return-valuesIb Lundgren2014-02-122-2/+6
|\ \ | |/ |/| Fix docstrings to reflect the actual returned value of validate_* methods
| * Fix docstrings to reflect the actual returned value of validate_* methodsMathieu Pillard2014-02-112-2/+6
|/
* 0.6.10.6.1Ib Lundgren2014-01-202-1/+22
|
* Merge pull request #231 from masci/client_credential_contenttypeIb Lundgren2014-01-202-2/+12
|\ | | | | Wrong Content-Type header returned by client credential grant
| * return application/json content type in case of errormasci2014-01-191-1/+1
| |
| * added tests for content type checkingmasci2014-01-191-1/+11
| |
* | Merge pull request #230 from majidfn/patch-1Ib Lundgren2014-01-201-1/+1
|\ \ | |/ |/| Just a Typo in the headers
| * Just a Typo in the headersMajiD Fatemian2013-12-231-1/+1
|/ | | Instead of the Content-Type it was mentioned Authorization.
* Merge pull request #225 from wrr/is_within_original_scope_typoIb Lundgren2013-12-091-1/+1
|\ | | | | Fix typo (Issue #224).
| * Fix typo (Issue #224).Jan Wrobel2013-11-121-1/+1
|/
* Merge pull request #224 from wrr/is_within_original_scopeIb Lundgren2013-11-104-1/+40
|\ | | | | is_within_original_scope method for refresh token grant (Issue #220)
| * is_within_original_scope method for refresh token grant (Issue #220)Jan Wrobel2013-11-054-1/+40
| |
* | Merge pull request #223 from wrr/test_name_conflictIb Lundgren2013-11-101-1/+1
|\ \ | | | | | | Fix test method name conflict.
| * | Fix test method name conflict.Jan Wrobel2013-11-051-1/+1
| |/ | | | | | | Without the fix only a single test_invalid_scope method is run.
* | Merge pull request #222 from lepture/metaIb Lundgren2013-11-102-1/+17
|\ \ | |/ |/| Meta
| * Add maintainer info and get version from oauthlib module.Hsiaoming Yang2013-11-041-1/+4
| |
| * Add meta info in oauthlib moduleHsiaoming Yang2013-11-041-0/+13
|/
* Merge pull request #218 from edevil/ReturnRequestIb Lundgren2013-11-012-0/+2
|\ | | | | Include the request object in the returned dict
| * Include the request object in the returned dict, it can be used to cache ↵Andre Cruz2013-10-282-0/+2
| | | | | | | | information that will be used later.
* | Merge pull request #219 from edevil/CorrectInterfaceIb Lundgren2013-11-011-1/+1
|\ \ | |/ |/| Correct interface
| * Correct interface of RequestValidator.confirm_redirect_uri() to make it ↵Andre Cruz2013-10-291-1/+1
|/ | | | consistent with the call in AuthorizationCodeGrant.validate_token_request().
* Merge pull request #217 from lepture/fix-jsonIb Lundgren2013-10-146-6/+6
|\ | | | | JSON content type has no charset.
| * Fix all application/json mimetypes.Hsiaoming Yang2013-10-125-5/+5
| |
| * JSON content type has no charset.Hsiaoming Yang2013-10-121-1/+1
|/
* Merge pull request #216 from ButchershopCreative/masterIb Lundgren2013-10-101-1/+6
|\ | | | | Set headers on client credentials access token response
| * Set headers on client credentials access token responseAleksandr Vladimirskiy2013-10-101-1/+6
|/
* Merge branch 'master' of https://github.com/idan/oauthlibIb Lundgren2013-10-046-26/+157
|\
| * Merge pull request #214 from masci/fix_client_authentication_required_callIb Lundgren2013-09-256-26/+157
| |\ | | | | | | Fix bug in client_authentication_required call
| | * fixed and extended tests for validate_token_request methodMassimiliano Pippi2013-09-221-27/+55
| | |
| | * broke up method into different tests, fixed import styleMassimiliano Pippi2013-09-222-74/+54
| | |
| | * added myself to the authors listMassimiliano Pippi2013-09-211-0/+1
| | |
| | * fixed operator precedence in duplicate_params propertyMassimiliano Pippi2013-09-211-1/+1
| | |
| | * added test involving client_authentication_required methodMassimiliano Pippi2013-09-213-1/+123
| | |
| | * fixed call to client_authentication_requiredMassimiliano Pippi2013-09-211-1/+1
| |/