I wanted to do the authentication as follows
- User will visit my client application and provide email & password and request my API say api.example.com.
- At my server (api.example.com), I will request auth0 (maybe with database connection) to validate email and password and request client credentials grant token(s) - Nope auth0 will take care of email and password validity.
- Once I’ve got a response from auth0, my server will send back the tokens to the client application.
Is the above mentioned scenario possible with auth0? I’ve searched some of the links in auth0 but could not find one that meets my brequirement.