AzureB2C
๐ Descriptionโ
This section details the configuration for the Azure B2C authentication provider.
๐งพ Fieldsโ
| # | Field | Type | Description |
|---|---|---|---|
| 1 | authority | string | URL Authority of the Azure B2C tenant (including policy in query string), provided by the client. |
| 2 | clientId | string | Client ID of the app registered in Azure B2C, provided by the client. |
| 3 | redirectUri | string | Registered URI in Azure B2C to redirect users after login. Must match: https://<client-configured-dns>/signin-oidc-b2c |
| 4 | scopes | array of strings | Requested scopes. Possible values: openid, profile, phone |
| 5 | responseType | array of strings | OIDC response type (code or id_token). Default: id_token |
๐พ JSON Exampleโ
{
"azureB2C": {
"authority": "https://accounts.mytenant.com/mytenant.onmicrosoft.com",
"clientId": "00000000-0000-0000-0000-000000000000",
"policy": "B2C_1A_SIGNUP_SIGNIN",
"redirectUri": "https://imagonistshop.timeware.it/signin-oidc-b2c",
"scopes": [
"openid",
"profile",
"phone"
],
"responseType": "id_token"
}
}