Ready to post? First, try searching for your answer.
Hi!
I have a dotnet app (Blazor .net 8) running inside an Azure Container App. All traffic is configured to go through Azure API Management system, so both REST API calls and the actual website HTTP requests go through there. The DNS for our custom domain is configured in the APIM.
Suppose my site is https://www.blazorapp.net
And the “internal” name for the azure container app is internal-azure-name.azure.com
We have this problem:
- The code in our app goes to Login (following the instructions on Andrea’s post)
- Then the callback URL is built by the middleware (I guess) as https://internal-azure-name.azure.com/callback and NOT https://www.blazorapp.net/callback, so after login my site is no longer the official name but a weird one.
Is there a way I can configure the FULL PATH (ie the domain too) for the callback and not just the path inside the app?
Mentioning @andrea.chiarelli
Thanks!