I would like to use Django for implementing Single Sign On (SSO) for multiple applications that we currently use. How to implement SSO using Django ?. Are there any Django packages that can be utilized for implementing SSO ?
Please Help Thank You
|
I would like to use Django for implementing Single Sign On (SSO) for multiple applications that we currently use. How to implement SSO using Django ?. Are there any Django packages that can be utilized for implementing SSO ? Please Help Thank You |
|||
|
|
Take a look at https://github.com/zuber/django-cas-provider + https://github.com/Nitron/django-cas-consumer (or http://code.google.com/p/django-cas/ ) |
|||
|
|
|
We're using OpenAM. http://forgerock.com/openam.html The OpenAM Cookie means that the user is authenticated. An authentication backend for this is pretty simple. Under 50 lines of code. http://docs.djangoproject.com/en/1.2/topics/auth/#other-authentication-sources We wrote a little bit of code that makes a RESTful request to the OpenAM server to get the user, group and role information. We then use the roles to determine the user's authorizations. |
|||
|
|
|
There's OpenID and openid-auth. |
|||||
|