Redirect after Signup auth0.js v9

I am looking for a feature to redirect user to a specific url after signup is successful. I don’t see any way to do that from the documentation. I am using below config.

var webAuth = new auth0.WebAuth({
domain: ‘@Model.Domain’,
clientID: ‘@Model.ClientId’,
redirectUri: ‘@Model.CallbackUrl’,
responseType:‘code’
});

webAuth.signup({
connection: ‘Username-Password-Authentication’,
email: registerEmail.val(),
password: registerPassword.val(),
state: a0state
}, function (err) {
if (err)
displayRegisterError(err.code);
});

Hey @venkata.dorisala

As it has been more than a few months since this topic was opened and there has been no reply or further information provided from the community as to the existence of the issue we would like to check if you are still facing the described challenge?

We are more than happy to assist in any way! If the issue is still out there please let us know so we can create a new thread for better visibility, otherwise we’ll close this one in week’s time.

Thank you!

This topic was automatically closed 6 days after the last reply. New replies are no longer allowed.