Forum Discussion

ArielSubia's avatar
ArielSubia
Frequent Visitor
1 year ago
Solved

Airflow Jobs

Hello, dear all. I'm starting with Airflow in Fabric. So, I want to know how I can migrate my project that is working in my local machine if Fabric only allows add .py files. Usually, in a Airflow p...
  • v-venuppu's avatar
    1 year ago

    Hi ArielSubia ,

    You are facing the error because Azure AD is rejecting the OAuth request because the redirect URI you are using is not registered in their Entra ID app registration.Go to Azure Portal > Microsoft Entra ID > App registrations.Open the app used for PowerShell login (or the default Power BI client app if not using a custom one).Go to Authentication.Under Redirect URIs, click Add a platform > Mobile and desktop applications.Add the URI exactly which is used in your script.Enable Allow public client flows under Advanced settings.Save changes.Retry your Connect-PowerBIServiceAccount command in PowerShell.The authentication should now succeed without AADSTS500113.

    Thank you.