- Author:
- erikwright
- Posted:
- January 15, 2010
- Language:
- Python
- Version:
- 1.1
- Score:
- 2 (after 2 ratings)
This simple class allows you to use django-digest (http://bitbucket.org/akoha/django-digest/) with Piston.
1 2 3 4 5 6 7 8 9 10 11 12 | from django_digest import HttpDigestAuthenticator
class HttpDigestAuthentication(object):
def __init__(self):
self._authenticator = HttpDigestAuthenticator()
def is_authenticated(self, request):
return self._authenticator.authenticate(request)
def challenge(self):
return self._authenticator.build_challenge_response()
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Thanks a lot, could you please provide a short explanation how to integrate it? Thank you!
#
I tried it this way now:
but no authentication is required. Any ideas?
#
Works now - I had the credentials in the cache...
#
works
#
Please login first before commenting.