Implementing user authentication and authorization
- An ASP.NET Core application that you’ve successfully deployed to an App Service needs to authenticate users with their Azure Active Directory (AAD) accounts. When you enable authentication for your application within the Azure portal, which one of the following types of resources is required to integrate your app with AAD?
- An application gateway
- An application proxy
- An app registration
- You’re developing an internal .NET Core application that will run on users’ devices and require them to authenticate with their AAD accounts. You are using the
Microsoft.Identity.Client
NuGet package in your project:var app = [missing word] Â Â Â Â .Create(_clientId) Â Â Â Â .WithAuthority(AzureCloudInstance.AzurePublic, _tenantId) Â Â Â Â .WithRedirectUri("http://localhost") Â Â Â Â .Build();
Which one of the following is the missing word from...