aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/authentication.py
AgeCommit message (Collapse)Author
2013-06-05Fix serialization exception when using non-existent consumerAlex Burgel
2013-04-25Cleanup docstringsTom Christie
2013-04-03Fix the fact that InvalidConsumerError and InvalidTokenError wasn't imported ↵Atle Frenvik Sveen
correctly from oauth_provider
2013-04-03Fix bug with inactive user accessing OAuthTom Christie
2013-03-27Complete remove of client checks from oauth2Fernando Rocha
Signed-off-by: Fernando Rocha <fernandogrd@gmail.com>
2013-03-27client credentials should be optional (fix #759)Fernando Rocha
client credentials should only be required on token request Signed-off-by: Fernando Rocha <fernandogrd@gmail.com>
2013-03-22If oauth is not attempted don't throw an error. Fixes #748.Tom Christie
2013-03-08Fixes for auth header checking.Tom Christie
2013-03-08More bits of cleanupTom Christie
2013-03-07Merge OAuth2 work.Tom Christie
2013-03-07Clean ups.Tom Christie
2013-03-07Fix Py3k syntax errorsTom Christie
2013-03-07Merge & clean OAuth supportTom Christie
2013-03-02Properly fail to wrong Authorization token typePierre Dulac
2013-03-01Clean up some print and commentsPierre Dulac
2013-03-01Improve the `django-oauth2-provider` import blockPierre Dulac
to avoid naming collision with `oauth2` used for OAuth 1
2013-03-01Add the OAuth2Authentication classPierre Dulac
2013-02-26Move oauth2 and django-oauth-plus imports to compat and fix some minor issuesswistakm
- alias oauth2 as oauth - remove rouge print - remove docstring markups - OAuthAuthentication.authenticate() now returns (user, token) two-tuple on success - don't set request.user because it's already set
2013-02-25add OAuthAuthentication classswistakm
2013-02-04Cleanup importsTom Christie
Mostly adding `from __future__ import unicode_literals` everywhere.
2013-02-013.2, 3.3 compatTom Christie
2013-02-01Merge branch 'p3k' of https://github.com/linovia/django-rest-framework into ↵Tom Christie
working Conflicts: rest_framework/authentication.py rest_framework/relations.py rest_framework/serializers.py rest_framework/settings.py rest_framework/tests/authentication.py rest_framework/tests/genericrelations.py rest_framework/tests/generics.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_nested.py rest_framework/tests/relations_pk.py rest_framework/tests/serializer.py
2013-01-21WWW-Authenticate responsesTom Christie
2013-01-07Introduced HTTP_HEADER_ENCODING.Xavier Ordoquy
2013-01-03Also use the compat module in that file.Xavier Ordoquy
2012-11-23Default encoding should probably be latin-1 as some RFC seems to imply it.Xavier Ordoquy
2012-11-226 first tests passes under python 3.2Xavier Ordoquy
2012-11-22First passing test under p3k \o/Xavier Ordoquy
2012-11-13Implementing 401 vs 403 responsesTom Christie
2012-10-17Add docs for 401 vs 403 responsesTom Christie
2012-10-15Explicit CSRF failure message. Fixes #60.Tom Christie
2012-10-15Tweak parsers to take parser_contextTom Christie
2012-10-10Fix session authTom Christie
2012-10-09Tweak authtokenTom Christie
2012-09-20Change package name: djangorestframework -> rest_frameworkTom Christie