Skip to main content

Overview

๐Ÿ”‘ Redis Keyโ€‹

tenant_slug:login

๐Ÿ“ Descriptionโ€‹

In this section, parameters for available authentication providers for the tenant are configured.

Currently implemented authentication methods:

  • Login with username and password via Imagonist API
  • Azure B2C

For the Imagonist API method, no configuration is required: it is always available and is the last fallback method used in order of priority.

If another method is configured here, it takes precedence.

To determine whether the user can navigate without logging in and access the checkout, refer to the AllowAnonymousNavigation field in the Features section.


๐Ÿงพ Fieldsโ€‹

#FieldDescription
1azureB2CAzure B2C authentication configuration, described in the relevant section

๐Ÿ’พ JSON Exampleโ€‹

{
"azureB2C": {
"authority": "https://test.b2clogin.com/test.onmicrosoft.com",
"clientId": "00000000-0000-0000-0000-000000000000",
"policy": "B2C_1A_SIGNUP_SIGNIN",
"redirectUri": "https://localhost:7285/signin-oidc-b2c",
"scopes": [
"openid",
"profile",
"phone"
],
"responseType": "id_token"
}
}