In testing django-allauth, if I log in and log out with different social accounts, they don't seem to be linked together (in that I cannot access them by looking at socialaccount_set.all.0, socialaccount_set.all.1, etc).
Can someone explain how to link social accounts together?
I did see this post: how do i connect multiple social auth providers to the same django user using django-allauth? which seems to put the onus on the user to log in first with one social account, and then link the other accounts for himself.
Certainly there should be a way to do this without putting the onus on the user? Maybe by email addresses?
Is there a way to do this after the fact with existing users?