The server example.env currently contains a trailing forward slash for the AUTH0_ISSUER_BASE_URL:
|
AUTH0_ISSUER_BASE_URL=https://xxxxxxxxx.us.auth0.com/ |
As a result, the getUserInfo function sends the axios request as //userinfo which causes Auth0 to return 404 Not Found:
|
const userInfoUrl = `${auth0Url}/userinfo`; |