Hello @John Walter , Azure AD supports a maximum of 100 and 250 redirect URI for apps supporting personal accounts and work accounts respectively. That being said you can try storing the specific dynamic redirect URI or an identifier in the state param during an authentication request so that it can be retrieved after authentication and used to do a final redirect. Flow would be like this:
- Client send authentication requests for subdomain
xyz.constoso.com
and stores it or an identifier in state param. - Authentication requrests end with Azure AD redirecting to default redirect URI. Eg.
https://contoso.com/callback
- Client application read returned state param and based on its value redirects to
https://xyz.contoso.com
Let us know if you need additional assistance. If the answer was helpful, please accept it and rate it so that others facing a similar issue can easily find a solution.