AMT Help Files

File oidcconfig JSON

Available Settings

See the descriptions below for each setting available in this file.

issuer
Set the URL of the OpenID provider.

redirectUri
Set the URL to which the user of the Control Center is redirected after successful authentication.

clientId
Set the ID of the application registered at the OpenID provider to identify the application when authentication requests are made.

scope
An identifier for resources that an application can access.

responseType
Set the type of response to receive from the OpenID provider after authentication.

claimUserName
Set a preferred username to claim.

tokenRefreshTreshold

 This information is incomplete.

loginButtonLogo
Set this value to the location of an image file to replace the default logo displayed on the login button. The default path is assets/image/, but can also point to an image on disk or from URL.

Supported image formats are:

Sample File

{
  "AuthenticationConfig": {
    "issuer": "https://login.microsoftonline.com/<id>/v2.0",
    "redirectUri": "http://localhost:4200/control-center",
    "clientId": "<id>",
    "scope": "openid profile api://<id>/DefaultApi offline_access",
    "responseType": "code",
    "claimUserName": "preferred_username",
    "tokenRefreshThreshold": 15,
    "loginButtonLogo": "assets/image/<image>.png"
  }
}