Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django-Socialauth - How to associate multiple authentication providers to a single user account

Django-Social in its feature list claims that it supports associating multiple authentication providers to a single user account.

I can't seem to figure out how to use that feature.

When I try to login using a new authentication provider it automatically seems to be creating a new account for each provider.

Any ideas?

Sarvi

like image 543
Sarvi Shanmugham Avatar asked Oct 12 '22 15:10

Sarvi Shanmugham


1 Answers

Take a look to django-social-auth, it's simpler and easier to setup than Django-Socialauth.

Multiple account association is supported but limited to logged in users to avoid the decision of which user instance must be removed.

like image 54
omab Avatar answered Oct 14 '22 10:10

omab