On 12 October 2010 22:29, Morten Pedersen <[email protected]> wrote: > Hi everyone > I would be very very gratefull for any help getting access to the basic http > user and password through Django.
As far as I know, HTTP Basic Authentication occurs at the HTTP connection level, i.e. it is between the web server and browser. There is no way for Django to access that. What usually happens is people use 'forms authentication' instead. Django has a built-in authentication app - see http://docs.djangoproject.com/en/dev/topics/auth/ > A simple app that print out the password an user to the browser would really > help me very very much. > > Cheers > Morten Pedersen > Denmark > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

