Python Social Auth Redirecting To The Same Url
After I choose some view with the decorator login_required() the user is redirected to: http://example.com/login/?next=/anuncio/adicionar/, right? But, after I use 'Login with face
Solution 1:
Add login redirect url to your settins.py file
LOGIN_REDIRECT_URL = '/anuncio/adicionar/'
so when user is authenticated it will tedirect the above url
Post a Comment for "Python Social Auth Redirecting To The Same Url"