December 2019
Intermediate to advanced
598 pages
12h 21m
English
We are nearly ready to give the sign-in and sign-out processes a try. First, we need to configure our frontend to interact with the correct Auth0 tenant. These are configured in AppSettings.ts:
export const authSettings = { domain: 'your-tenantid.auth0.com', client_id: 'your-clientid', redirect_uri: window.location.origin + '/signin-callback', scope: 'openid profile QandAAPI email', audience: 'https://qanda',};
We need to substitute our specific tenantid and clientid in this settings file.
We have already discovered where to find our Auth0 tenant in the last chapter but, as a reminder, it is to the left of our user avatar:
The client ID ...
Read now
Unlock full access