Hello.
I’m thinking of developing a full stack web app using nuxt.js on the front end, Laravel on the back end, and Auth0 for authentication.
For login, I will use Universal Login, but I am thinking of registering users by calling the API.
I would like the password to be entered by the registered user, but when I checked the API documentation, I found that “password” exists in the request parameter and is required.
https://auth0.com/docs/api/authentication#signup
Does this mean that I always have to set a password when executing the user registration API?
What I was thinking was
- Execute user registration using API (do not enter password)
- Send a link to set a password to the registered email address
3.The link will take you to a password entry screen, and the user will enter the password to complete registration.
I was thinking of developing something like this, is it possible?