Hey everyone,
I have the following front-end code that handles my login with the universal login.
export const auth0Client = createAuth0Client({
domain: config.auth.domain,
clientId: config.auth.clientId,
cacheLocation: 'localstorage',
authorizationParams: {
redirect_uri: window.location.origin,
audience: config.auth.audience
}
})
What I’d like to do is to add a deeper URI to redirect_uri: window.location.origin so I can bounce my user to the deep link they requested. However this seems to require specifying each and every possible valid URI in the Auth0 back-end.
Is there any simple way round this?
Many thanks!