anujabhojani
anujabhojani
1. Updated the GraphAuthProvider.cs for supporting single tenant. _app = ConfidentialClientApplicationBuilder.Create(azureOptions.ClientId) .WithClientSecret(azureOptions.ClientSecret) .WithTenantId(azureOptions.TenantId) .WithAuthority(AzureCloudInstance.AzurePublic, AadAuthorityAudience.AzureAdMyOrg) .WithRedirectUri(azureOptions.BaseUrl + azureOptions.CallbackPath) .Build(); Azure App updated for Single Tenant:  2. From Azure Portal,...