Use Azure Active Directory Authentication
Edi Wang edited this page Oct 30, 2020
·
1 revision
- Register an App in Azure Active Directory
- Set Redirection URI to "https://yourdomain/signin-oidc" (For local debugging, also add URL to https://localhost:1055/signin-oidc)
- Check
ID Tokens
checkbox under the 'Authentication' page in Azure Portal. - Copy
appId
to set asAzureAd:ClientId
in appsettings.[env].json file
"Authentication": {
"Provider": "AzureAD",
"AzureAd": {
"Domain": "{YOUR-VALUE}",
"TenantId": "{YOUR-VALUE}",
"ClientId": "{YOUR-VALUE}"
}
}