2👍
There’s one correct way to log a user in, but there are many, may, many potential authdbs.
1👍
If you want to allow your users to signup/singin with Twitter, Facebook and OpenID (i.e. Google and others), I suggest django-socialregistration. A few months ago when I did a research it was the most straightforward and complete such library out there, and now it looks like it’s I was right as it’s gaining momentum in Django community.
Edit
Django gurus also use django-socialregistration: http://www.revsys.com/officehours/2010/nov/05/#question27 🙂
- [Django]-Django REST randomized query pagination
- [Django]-Point manage.py to a specific PostegreSQL schema
1👍
The socialauth module provides you one click login options via various OpenId Providers like (Google, Yahoo, custom etc) + Twitter + Facebook. Read more about socialauth at http://uswaretech.com/blog/2009/08/django-socialauth-login-via-twitter-facebook-openid-yahoo-google/ and source is on github https://github.com/uswaretech/Django-Socialauth
- [Django]-Render to response to a redirected url in Django
- [Django]-Unable to connect to gmail smtp linode django apache2 setup
1👍
You have many choices to choose from. You can use Django’s default user authentication, Django-OpenID, and a lot more. One of the easiest app to setup is ‘django_openid_auth’. You can view the snippets here: http://djangosnippets.org/snippets/2183/
- [Django]-Get all objects with today date, django
- [Django]-When running Celery with Django's manage.py command, it returns a strange error
- [Django]-Django equivalent of Rails application.html.erb?
- [Django]-Custom django-admin commands – AttributeError: 'Command' object has no attribute 'stdout'
- [Django]-Why is my JSON from Django being cut-off at about 2.1MB?