Here is the scenario: New users who signup will be redirected to a signup form to collect additional info. After they submit that, they are redirected to the dashboard. Currently, I have it set up so that once the user logins, the redirectUri for auth0 is set to the signup form. However, I need to change this so that only first time users will be redirected to that form.
I am planning to use rules to implement this, and have read some of the documentation. However, I am confused. So far, I have set up context.redirect url.
The url I wish to redirect to is: http://localhost:3000/signup. However, Auth0 adds a state parameter field to the url, and this messes up the page and doesn’t load it properly. How do I fix this?