Liquit.GetSources

Prev Next

The Liquit.GetSources function allows you to retrieve the identity sources known in the Application Workspace, as well as to determine the authentication method required by them.

Request parameters

Name Description
description The description provided for the identity source.
displayname The name of the identity source which is displayed to the user.
hidden This identity source is not listed as a selectable option but can be used to log in.
id The id of the identity source.
methods The methods available for the identity source
  • Federated - if this method is available, the Liquit.SSO function can be used to authenticate to this identity source.
  • Login - If this method is available, the Liquit.Login function can be used to authenticate against this identity source.

Example

Liquit.GetSources(
    (result ) => {
    
        //The result parameter will contain the identity source information.
        console.log(result);
        
    }
);