hello,
I’ve client id and domain setup done on my frontend and backend is running at http://localhost:3000/api/v1. front end is in angular js and back-end in node and written in ts.
frontend config…
CLIENT_ID: ‘some-id’,
CLIENT_DOMAIN: ‘dev-somedev.auth0.com’,
AUDIENCE: ‘http://localhost:3000/api/v1’,
REDIRECT: ${ENV.BASE_URI}/login/callback
, // BASE_URI: http://localhost:4200/en/
SCOPE: ‘openid profile’
@ auth0, I’ve application created in applications with necessary callback url.
after accessing the frontend, I get following error eveen though backedn is running on my local machine.
Error authenticating:
-
{error: “access_denied”, errorDescription: “Service not found: http://localhost:3000/api/v1”, state: “rqaBNbV42GCt…”}
- error: “access_denied”
errorDescription: “Service not found: http://localhost:3000/api/v1”
state: “rqaBNbV42GCt…”
- error: “access_denied”
Am I missing anything in config @ auth0 or something wrong with my backend.