I've created an email confirmation system. Following a crazy long random string in a link will tell my backend that you found the link in your email and used it. Great.
Now I'd like to login that user. The problem is that auth.login(request, user) doesn't seem to just need the user model object. It seems like it needs the a "backend". I get an error: Look at the code in contrib/auth/__init__.py http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/__init__.py 46 def login(request, user): 47 """ 48 Persist a user id and a backend in the request. This way a user doesn't 49 have to reauthenticate on every request. 50 """ 51 if user is None: 52 user = request.user 53 # TODO: It would be nice to support different login methods, like signed cookies. 54 user.last_login = datetime.datetime.now() 55 user.save() 56 request.session[SESSION_KEY] = user.id 57 request.session[BACKEND_SESSION_KEY] = user.backend 58 if hasattr(request, 'user'): 59 request.user = user How do I get access to that backend? Thanks Ivan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---