A developer is configuring a multi-tenant web application named AppRegister in Microsoft Entra ID. The application must allow users from any organizational tenant to authenticate. However, the application must prevent users with personal Microsoft accounts (MSA) from signing in. Which two configurations should the developer implement to meet these requirements?
- Set the signInAudience parameter in the application manifest to AzureADMultipleOrgs.Cevap
- BSet the signInAudience parameter in the application manifest to AzureADandPersonalMicrosoftAccount.
- Configure the application to direct authentication requests to the /organizations endpoint.Cevap
- DConfigure the application to direct authentication requests to the /common endpoint.
Cevap
Setting the signInAudience parameter in the application manifest to AzureADMultipleOrgs and directing authentication requests to the /organizations endpoint.
To configure a multi-tenant application that supports only work or school accounts from any organization and excludes personal Microsoft accounts, the signInAudience parameter in the application manifest must be set to AzureADMultipleOrgs. Additionally, the application must send authorization requests to the /organizations endpoint. The /common endpoint and the AzureADandPersonalMicrosoftAccount audience value would allow personal Microsoft accounts to authenticate, which violates the requirement.
Adım Adım Çözüm
Anahtar Kavram
Multi-tenant Applications Configuration