Hello I am making an application that uses the Auth0 universal login and I need some more information about the user. I made this possible with the onboarding form templates. The problem occurs when I press continue on the onboarding form. When I login or register, I fill in my email/password fields. When I click on the “login” or “register” button, Auth0 will check if there is any metadata in the user (Like firstname, lastname, phonenumber, …). In case there is no metadata, the user will be redirected to the onboarding page.
Here the user can put in the extra information (first name, last name and phone number). When the user presses continue it gives me the following error:
As you can see in the URL it says localhost:5106/callback . When I get rid of the “callback” and press enter, it wil automatically redirect me to the consent page:
This got me thinking that maybe I am wrongly redirected. I have tried many things and searched a lot of forms but I haven’t found a solution to my problem yet.
I was thinking of putting the redirect in my post login flow but I do not know what the URL would be.
Does anyone know how I can fix this?
In case you need to know, my application uses a Blazor frontend (with a .NET backend, Clean Architecture)
Thanks in advance!