Skip to content

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 to https://localhost:35996/signin-oidc)
  • Check ID Tokens checkbox under the 'Authentication' page in Azure Portal.
  • Copy appId to set as EntraID:ClientId in appsettings.json file
"Authentication": {
  "Provider": "EntraID",
  "EntraID": {
    "Domain": "{YOUR-VALUE}",
    "TenantId": "{YOUR-VALUE}",
    "ClientId": "{YOUR-VALUE}"
  }
}
Clone this wiki locally