We’d like to use Auth0 for authentication only and not user management. We’re like continue using our user table from our Postgres database for our web app.
One way I could see this happening is the user authenticates with Auth0 and when redirected to our web app, we could map the username (email address) to our user table.
Is this a good way to go about it? Has anyone does this before? Is there any documentation that would help in implementing this flow?
Thanks!