-2

Regards

I,m workig in a django development with at least 4 apps, where every app have is own domain, the idea is centralize a Single Sign On to this 4 apps with a central db and central login panel, when a user login in the main login panel could be redirect to any of the other apps without login again.

Also I need when the user logout, the logout works for all apps.

I have been researchign and found django-sso and try to implement but doesn't work, could anybody help me wiht this.

How can I achieve this ??

James
  • 13,571
  • 6
  • 61
  • 83
guialante
  • 96
  • 7
  • This is not a question. Please ask about a particular error or problem you're having with django-sso, or what is the best package to use for SSO in Django. – Alison R. Jan 25 '12 at 15:49
  • @AlisonR. If you don't think it's a real question, go ahead and flag it as such (if you haven't already). – Marcin Jan 25 '12 at 16:08

1 Answers1

1

The way to do this is with a cookie that is somehow shared across different domains. As this is exactly the thing that a cookie by itself will never alow, you'll need some magic in between. See this post for some ideas

Community
  • 1
  • 1
Wesley
  • 2,204
  • 15
  • 14