Auth0 auth token and jwks urls?

I got google to work but I would like to test Auth0 too. I’m having troubles finding the right urls to use. This is what i have ritght now:

  openid:
    auth-url: https://ignacio.auth0.com/oauth/auth
    token-url: https://ignacio.auth0.com/oauth/token
    jwks-url: https://ignacio.auth0.com/.well-known/jwks.json

This is the error that I get:

Cannot GET /oauth/auth

Thanks for the help!

Hi @ignacio82,

Here is an example for Auth0 URLs:

  openid:
    auth-url: https://your-app-name.auth0.com/authorize
    token-url: https://your-app-name.auth0.com/oauth/token
    jwks-url: https://your-app-name.auth0.com/.well-known/jwks.json
1 Like