-
Notifications
You must be signed in to change notification settings - Fork 136
Use Microsoft Entra ID Authentication
Edi Wang edited this page Oct 23, 2024
·
4 revisions
- Register an App in Microsoft Entra ID
- Set Redirection URI to
https://<your.domain>/signin-oidc
(For local debugging, also add URL tohttps://localhost:35996/signin-oidc
) - Check
ID Tokens
checkbox under the 'Authentication' page in Azure Portal. - Copy
appId
to set asEntraID:ClientId
inappsettings.json
file
"Authentication": {
"Provider": "EntraID",
"EntraID": {
"Domain": "{YOUR-VALUE}",
"TenantId": "{YOUR-VALUE}",
"ClientId": "{YOUR-VALUE}"
}
}