-
Notifications
You must be signed in to change notification settings - Fork 432
Open
Labels
Description
Checklist
- I have looked into the Readme, Examples, and FAQ and have not found a suitable solution or answer.
- I have looked into the API documentation and have not found a suitable solution or answer.
- I have searched the issues and have not found a suitable solution or answer.
- I have searched the Auth0 Community forums and have not found a suitable solution or answer.
- I agree to the terms within the Auth0 Code of Conduct.
Describe the problem you'd like to have solved
My application utilizes HTTP rewrites to offer multi-tenant subdomains like in: https://vercel.com/templates/next.js/platforms-starter-kit
I'd like to configure access token and profile routes because I am instantiating tenant-specific Auth0Client
s at request time based on the accessed subdomain
Describe the ideal solution
Instead of:
export type RoutesOptions = Partial<Pick<Routes, "login" | "callback" | "logout" | "backChannelLogout">>;
This:
export type RoutesOptions = Partial<Routes>;
Also update functions getAccessToken
and useUser
Alternatives and current workarounds
No response
Additional context
No response