Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best authentication app for Django that:

  • has configurable required fields, for example allows using email as username
  • integrates with other authentication APIs, such as Facebook, Twitter, Google
  • password recovery flow is configurable, sends temporary password vs. recovery link
  • preferably has invitation system, so the registration process can be controlled

I don't think there is any that has all these features, so I'm looking for one that covers as much as possible. But these are features that almost any well design web service should have. So I don't want to reinvent the wheel.

share|improve this question
2  
Have you looked at Pinax? Their ecosystem page has referral/invitation apps, the builtin accounts app has password reset links (dunno how configurable) - the only thing I see missing is the FB/google authentication. – AdamKG Jan 25 '12 at 18:32
Not yet, but I'm going to look. – grigy Jan 25 '12 at 19:04

2 Answers

up vote 9 down vote accepted

There isn't one django package that will cover everything, instead there are numerous great projects that tackle each of the requirements you mention:

  • general auth : django-auth - this is a part of the django distribution but needs to be eneabled
  • social authentication : django-social-auth - integrates social authentication with the default django-auth flow
  • registration and passwords : django-registration - adds the registration flow, including sign up and email confirmation etc.
  • invitation system : django-invitation - allows registration to be limited to invitations
  • profiles : django-profiles - allows you to extend the users account with a profile

You could also have a look at django-userena which is a new hosted solution to user management for your django app. I haven't looked into how it works or how comprehensive it is, but it looks promising.

Finally, have a look at django packages for other authentication apps:

http://djangopackages.com/grids/g/authentication/

share|improve this answer

Here is nice and official comparison for only Facebook Authentication Packages

Facebook Authentication

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.