Low severityauthentication
Power BI Error:
AADSTS90130
What does this error mean?
The app is registered as single-tenant or personal-only and cannot authenticate via the /common or /consumers endpoint.
Common causes
- 1App registration 'Supported account types' is set to 'Accounts in this organizational directory only' (single tenant), which is incompatible with /common and /consumers
- 2App is configured for work/school accounts only but the client uses the /consumers endpoint intended for personal Microsoft accounts
- 3Client (MSAL, ADAL, custom OAuth) hardcodes authority `https://login.microsoftonline.com/common` instead of a tenant ID or /organizations
- 4Using a converged app registration pattern with a non-converged app, or vice versa
- 5Power BI / Fabric embedded scenarios using /common while the embedding app is registered single-tenant
How to fix it
- 1Open the app registration in Entra ID (Azure AD) → Authentication → 'Supported account types' and confirm which audiences are allowed (single tenant, multi-tenant, or personal accounts)
- 2In your client code or connection string, replace authority `/common` or `/consumers` with `/organizations` (any work/school tenant) or with the specific tenant ID `/{tenant-id}` matching the app registration
- 3If you need broad audience support (multi-tenant + personal), change 'Supported account types' to 'Accounts in any organizational directory and personal Microsoft accounts' and re-test
- 4For Power BI Embedded / service principal flows, use the tenant-specific authority of the workspace tenant — never /common
- 5Clear cached tokens (MSAL token cache, browser session) after changing the authority, otherwise the old /common token request will keep failing