Django allauth Redirect after social signup
问题 I would like to redirect to a certain link after social signup, how and where do I do that? I can do it for regular signup but I can't for social signup. 回答1: Alternatively you can write your own custom social account adapter to handle different logged in redirection from different social accounts and not messing with your normal account settings, like so: # adapter.py from allauth.socialaccount.adapter import DefaultSocialAccountAdapter class SocialAccountAdapter(DefaultSocialAccountAdapter)