Hey Guys,
currently I am building a platform using Vue.js 2 and for that I need a user to register via Auth0 . After the registration the user should get redirected to another url (user is on http://localhost:3000/
and should get redirected to http://localhost:3000/register). I use the authWrapper like mentioned in the Vue.js Beginners guide:
this.$auth.loginWithRedirect({
screen_hint: "signup",
redirect_uri: "http://localhost:3000/register",
});
The signUp works well, I get routed to the Auth0 signUp screen. When I finish the sign up I get routed to to my register page but there is no access token nor id token. If I do not use the redirect_uri in the RedirectLoginOptions I get everything I need. So my questions is why I do not get the tokens when using another redirect uri. Of course the register page is added to the Allowed callback URLs.