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
|
Example
Liquit.GetSources(
(result ) => {
//The result parameter will contain the identity source information.
console.log(result);
}
);