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 ??
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