You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The included Django auth app allows for using named URLs in the settings, like so:
LOGIN_REDIRECT_URL = 'my_url'
However, trying to do the same in python-social-auth produces an error because the named URL isn't resolved when the Django strategy retrieves it from the settings.
The text was updated successfully, but these errors were encountered:
Today I ran into the issue again. The problem is when PSA pulls the non-resolved URLs from the settings, they don't appear as valid URLs and are thus not taken into account when redirecting e.g. a new user. I'm going to do a pull request.
The included Django
auth
app allows for using named URLs in the settings, like so:However, trying to do the same in
python-social-auth
produces an error because the named URL isn't resolved when the Django strategy retrieves it from the settings.The text was updated successfully, but these errors were encountered: