Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add crypto token capability | jturmel | 2014-03-17 | 1 | -0/+30 | |
| | | | | | | | | | | | * 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. | |||||
* | fixed operator precedence in duplicate_params property | Massimiliano Pippi | 2013-09-21 | 1 | -1/+1 | |
| | ||||||
* | Refactor common tests into subject area tests. | Ib Lundgren | 2013-09-13 | 1 | -4/+3 | |
| | ||||||
* | Add star to the set of safe characters in urls | Mathieu Alorent | 2013-07-24 | 1 | -1/+1 | |
| | ||||||
* | add comma to the set of safe characters in urls | Massimiliano | 2013-07-09 | 1 | -1/+1 | |
| | ||||||
* | Split OAuth2 large modules into smaller ones. #168. | Ib Lundgren | 2013-05-30 | 1 | -0/+14 | |
| | ||||||
* | Check for items(), not dict instance to allow pseudo dicts. | Ib Lundgren | 2013-05-20 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #124 from wiliamsouza/master | Ib Lundgren | 2013-03-26 | 1 | -0/+13 | |
|\ | | | | | Add generate_client_id to common | |||||
| * | Added generate_client_id function to common | Wiliam Souza | 2013-02-27 | 1 | -0/+13 | |
| | | ||||||
* | | On the difference between 2 & 3 parse_qsl | Ib Lundgren | 2013-03-26 | 1 | -0/+14 | |
| | | ||||||
* | | Unicode experimentation, #127 | Ib Lundgren | 2013-03-25 | 1 | -1/+1 | |
| | | ||||||
* | | Duplicate parameter checks & tests. | Ib Lundgren | 2013-03-25 | 1 | -0/+11 | |
| | | ||||||
* | | Fix decode,encode mixup. | Ib Lundgren | 2013-03-02 | 1 | -2/+3 | |
|/ | ||||||
* | Request now use a CaseInsensitiveDict. Fix #121. | Ib Lundgren | 2013-02-21 | 1 | -1/+31 | |
| | ||||||
* | Revert default urlencoding | Ib Lundgren | 2013-02-05 | 1 | -1/+1 | |
| | ||||||
* | Automatic urlencoding of input (#96). | Ib Lundgren | 2013-01-29 | 1 | -2/+2 | |
| | ||||||
* | Large OAuth 2 provider update. | Ib Lundgren | 2013-01-22 | 1 | -4/+3 | |
| | ||||||
* | Experimental default unicode conversion (#53, #68, #86) | Ib Lundgren | 2013-01-07 | 1 | -20/+35 | |
| | ||||||
* | A batch of small fixes and cleanups. | Ib Lundgren | 2012-11-23 | 1 | -0/+8 | |
| | ||||||
* | Unicode decoding crash'n'burn style, default off, #53, #68. | Ib Lundgren | 2012-11-19 | 1 | -1/+17 | |
| | ||||||
* | Add params to fragment | Ib Lundgren | 2012-11-17 | 1 | -2/+6 | |
| | ||||||
* | fix some byte/unicode arguments for Python 2.6's benefit | Michael Terry | 2012-09-03 | 1 | -3/+5 | |
| | ||||||
* | Support Python 3 | Michael Terry | 2012-08-31 | 1 | -34/+64 | |
| | | | | | | These are mostly unicode string related changes and a few syntax ones. https://github.com/idan/oauthlib/issues/55 | |||||
* | add_params_to_qs now support dict queries | Ib Lundgren | 2012-06-29 | 1 | -3/+6 | |
| | ||||||
* | Safe string equals | Ib Lundgren | 2012-06-25 | 1 | -0/+16 | |
| | ||||||
* | Move shared functionality (#30) | Ib Lundgren | 2012-06-13 | 1 | -0/+58 | |
| | ||||||
* | Decode query to unicode in urldecode | Idan Gazit | 2012-05-01 | 1 | -0/+1 | |
| | | | | For completeness' sake. | |||||
* | Remove dead code | Idan Gazit | 2012-05-01 | 1 | -5/+0 | |
| | ||||||
* | Fix unicode leaks | Idan Gazit | 2012-05-01 | 1 | -45/+36 | |
| | | | | | | Wrap stdlib quote, unquote, urlencode in versions that protect the internal usage of unicode. All data going out is encoded as UTF-8, and the results are read back in and decoded from UTF-8. | |||||
* | Add unicode_params method | Idan Gazit | 2012-05-01 | 1 | -1/+15 | |
| | ||||||
* | Refactor utility methods, improve robustness of OAuth1 Client.sign | Idan Gazit | 2012-05-01 | 1 | -27/+91 | |
| | | | | | | | | | * Move quote, unquote, urldecode to oauthlib.common * Use urldecode for extract_params * Simplify request logic: store body and decoded_body instead of body_has_params * Document steps in Client.sign * Properly validate requests in Client.sign | |||||
* | Prevent degenerate extraction of non-formencoded strings | Idan Gazit | 2012-04-24 | 1 | -0/+6 | |
| | ||||||
* | Disable strict parsing when extracting parameters. | Idan Gazit | 2012-04-23 | 1 | -1/+4 | |
| | | | | | | | Strict parsing chokes on strings where keys don't always have values. The problem is that disabling strict parsing means "foo bar baz" doesn't raise valueerror, it simply ends up as a sole parameter with no value, defeating checks for non-formencoded bodies. | |||||
* | Add Request representation | Idan Gazit | 2012-04-23 | 1 | -0/+81 | |