When linking accounts to fb messenger, fb calls the passed URI for login with a query parameter redirect_uri
and a CALLBACK_URL
. A redirect, to redirect_uri
, with an authorization_code
if login succeeds must be performed.
If I want to perform the login using social login an issue appears related to what is explained here . The OAUTH handshake is done respecting the next parameter.
Where it's advisable to create a next parameter reflecting redirect_uri
such that the redirection takes place and doesn't disrupt all this great package.
If I wait to reach get_login_redirect_url
the parameter is already dropped when logging in. If it's logged it will be available for the redirect.
By the
social_auth
app you can appendnext
parameter to destination site login redirect url and user after successful login redirect automatically, But when usingall_auth
app you must override theaccount/signup.html
and add a code similar below to this template: