Hello @guidofranco
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to "Accept " the answer.
Issue:
- You deployed a Python web app using the Dash library on Azure App Service and tried to add authentication using Entra ID.
- However, you encountered a 403 error when you tried to access the web app and were not being redirected to the Microsoft login page as expected.
- You configured the issuer URL as
https://login.microsoftonline.com/<tenant id>/v2.0
and entered the app id from an app registration created on a different Entra ID tenant in the Azure portal. - Solution:
You resolved this issue by choosing the " HTTP 302 Found redirect" option for the "Unauthenticated request" requirement for your Python web app in the Azure portal
Best, Grace