Can I use HTTP Basic Authentication with Django? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T14:38:45Zhttp://stackoverflow.com/feeds/question/152248http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django2Can I use HTTP Basic Authentication with Django?Dave Webb2008-09-30T08:34:35Z2009-07-06T15:48:56Z
<p>We have a website running on Apache, access to which has a number of static pages protected via HTTP Basic authentication.</p>
<p>I've written a new part of the site with Django using Django's built in support for user management.</p>
<p>The problem I have is that users have to log in once via the HTTP Basic authentication and then again using a Django login form. This both clumsy and very confusing for users.</p>
<p>I was wondering if anyone had found a way to make Django log a user in using the HTTP Basic authentication information.</p>
<p>I not expecting to pass a password to Django, but rather if a user <code>dave</code> has been authenticated by Apache then they should be automatically logged into Django as <code>dave</code> too.</p>
<p>(One option would be to make Apache and Django share a user store to ensure common usernames and passwords but this would still involve two login prompts which is what I'm trying to avoid.)</p>
http://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django/152255#1522553Answer by Oli for Can I use HTTP Basic Authentication with Django?Oli2008-09-30T08:39:35Z2008-09-30T08:39:35Z<p>There is <a href="http://code.djangoproject.com/attachment/ticket/689/httpauth.py" rel="nofollow">httpauth.py</a>. I'm still a complete newb with Django so I've no idea how it fits in exactly, but it should do what you're looking for.</p>
<p>Edit: here's <a href="http://code.djangoproject.com/ticket/689" rel="nofollow">a longer bug thread on the subject</a>.</p>
http://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django/155057#1550570Answer by Andrew Wilkinson for Can I use HTTP Basic Authentication with Django?Andrew Wilkinson2008-09-30T20:55:26Z2008-09-30T20:55:26Z<p>Because django can be run in several ways, and only modpython gives you close integration with Apache, I don't believe there is a way for django to log you in basic on Apache's basic auth. Authentication should really be done at the application level as it'll give you much more control and will be simpler. You really don't want the hassle of sharing a userdata between Python and Apache.</p>
<p>If you don't mind using a patched version of Django then there is a patch at http://www.djangosnippets.org/snippets/56/ which will give you some middleware to support basic auth.</p>
<p>Basic auth is really quite simple - if the user isn't logged in you return a 401 authentication required status code. This prompts the browser to display a login box. The browser will then supply the username and password as bas64 encoded strings. The wikipedia entry http://en.wikipedia.org/wiki/Basic_access_authentication is pretty good.</p>
<p>If the patch doesn't do what you want then you could implement basic auth yourself quite quickly.</p>
http://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django/156593#1565934Answer by akaihola for Can I use HTTP Basic Authentication with Django?akaihola2008-10-01T07:36:27Z2008-10-01T11:56:06Z<p>Do check out Oli's links. You basically see the authenticated username as verified by Basic HTTP Authentication in Django by looking at request.META['REMOTE_USER'].</p>
<p><strong>Update:</strong> Tested the proposed patch for ticket <a href="http://code.djangoproject.com/ticket/689" rel="nofollow">#689</a>, which is available up-to-date in telenieko's git repository <a href="http://www.marcfargas.com/gitweb/?p=django.git;a=commitdiff_plain;h=trac/689-remote-user;hp=master" rel="nofollow">here</a>. It applies cleanly at least on revision <a href="http://code.djangoproject.com/browser/django/trunk?rev=9084" rel="nofollow">9084</a> of Django.</p>
<p>Activate the remote user authentication backend by</p>
<ul>
<li>adding the <code>RemoteUserAuthMiddleware</code> after <code>AuthenticationMiddleware</code></li>
<li>adding the setting <code>AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.RemoteUserAuthBackend',)</code></li>
</ul>
<p>If you use lighttpd and FastCGI like I do, activate mod_auth, create credentials for a test user (I called it <code>testuser</code> and set <code>123</code> as the password) and configure the Django site to require basic authentication.</p>
<p>The following <code>urls.py</code> can be used to test the setup:</p>
<pre><code>from django.conf.urls.defaults import *
from django.http import HttpResponse
from django.contrib.auth.models import User
urlpatterns = patterns('',
url(regex='^$',
view=lambda request: HttpResponse(repr(request), 'text/plain')),
url(regex='^user/$',
view=lambda request: HttpResponse(repr(request.user), 'text/plain')),
url(regex='^users/$',
view=lambda request: HttpResponse(
','.join(u.username for u in User.objects.all()),
'text/plain')),
)
</code></pre>
<p>After reloading lighty and the Django FCGI server, loading the root of the site now asks for authentication and accepts the <code>testuser</code> credentials, and then outputs a dump of the request object. In request.META these new properties should be present:</p>
<pre><code>'AUTH_TYPE': 'Basic'
'HTTP_AUTHORIZATION': 'Basic dGVzdHVzZXI6MTIz'
'REMOTE_USER': 'testuser'
</code></pre>
<p>The <code>/user/</code> URL can be used to check that you're indeed logged in as <code>testuser</code>:</p>
<pre><code><User: testuser>
</code></pre>
<p>And the <code>/users/</code> URL now lists the automatically added <code>testuser</code> (here the <code>admin</code> user I had created when doing <code>syncdb</code> is also shown):</p>
<pre><code>admin,testuser
</code></pre>
<p>If you don't want to patch Django, it's trivial to detach the <code>RemoteUserAuthBackend</code> and <code>RemoteUserAuthMiddleware</code> classes into a separate module and refer to that in the Django settings.</p>
http://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django/156832#1568320Answer by zgoda for Can I use HTTP Basic Authentication with Django?zgoda2008-10-01T09:14:56Z2008-10-01T09:14:56Z<p>This seems to be a task for custom <code>AuthenticationBackend</code> - see <a href="http://docs.djangoproject.com/en/dev//topics/auth/#other-authentication-sources" rel="nofollow">Django documentation on this subject</a>, djangosnippets.org has some real-life examples of such code (see <a href="http://www.djangosnippets.org/tags/auth-backend/" rel="nofollow">1</a> or <a href="http://www.djangosnippets.org/tags/authentication/" rel="nofollow">2</a>) (and this is not really a hard thing).</p>
<p><code>AuthenticationBackend</code> subclasses have to have only 2 methods defined and their code is pretty straightforward: one has to return User object for user ID, the second has to perform credentials check and return User object if the credentials are valid.</p>
http://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django/206089#2060890Answer by akaihola for Can I use HTTP Basic Authentication with Django?akaihola2008-10-15T19:31:37Z2008-10-15T19:31:37Z<p>See also <a href="http://docs.djangoproject.com/en/dev/howto/apache-auth/" rel="nofollow">Django documentation on authenticating against Django’s user database from Apache</a></p>
http://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django/1087736#10877360Answer by wsorenson for Can I use HTTP Basic Authentication with Django?wsorenson2009-07-06T15:48:56Z2009-07-06T15:48:56Z<p>For just supporting basic auth on some requests (and not mucking with the web server -- which is how someone might interpret your question title), you will want to look here:</p>
<p><a href="http://www.djangosnippets.org/snippets/243/" rel="nofollow">http://www.djangosnippets.org/snippets/243/</a></p>