To configure Delegated Admin as a new client:
After completing the previous steps, configure the following settings to display the name of the administrator who is signed on to the client application:
- Add the
profile
scope and ensure it is available to the OAuth client used for the Delegated Admin application. - Add and fulfill the
name
attribute as part of the contract for both the access token and the ID token supplied to the Delegated Admin application. - Set the
PROFILE_SCOPE_ENABLED
configuration variable for Delegated Admin in the config.js file to true./** * Configuration wrapper object for Delegated Admin */ window.PD_DADMIN_CONFIG = { /** * Set to true if the "profile" scope is supported for the Delegated Admin OIDC client on * PingFederate and you wish to use it to show the current user's name in the navigation. * DEFAULT: false */ PROFILE_SCOPE_ENABLED: true, };