Skip to content

Use Microsoft Entra ID Authentication

Edi Wang edited this page Dec 31, 2023 · 3 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:1055/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