ServiceClientCredentialsFactory class
La classe abstraite ServiceClientCredentialsFactory qui permet aux bots de fournir leur propre ServiceClientCredentials pour le bot vers le canal bot ou le bot de compétence aux appels de bot parent.
Méthodes
create |
Méthode de fabrique pour la création de ServiceClientCredentials. |
is |
Vérifie si l’authentification du bot est désactivée. |
is |
Valide un ID d’application. |
Détails de la méthode
createCredentials(string, string | undefined, string, boolean)
Méthode de fabrique pour la création de ServiceClientCredentials.
function createCredentials(appId: string, audience: string | undefined, loginEndpoint: string, validateAuthority: boolean): Promise<ServiceClientCredentials>
Paramètres
- appId
-
string
AppId.
- audience
-
string | undefined
Le public.
- loginEndpoint
-
string
URL de connexion.
- validateAuthority
-
boolean
Valeur de l’autorité de validation à utiliser.
Retours
Promise<ServiceClientCredentials>
isAuthenticationDisabled()
Vérifie si l’authentification du bot est désactivée.
function isAuthenticationDisabled(): Promise<boolean>
Retours
Promise<boolean>
Si l’authentification du bot est désactivée, le résultat est vrai ; sinon, false.
isValidAppId(string)
Valide un ID d’application.
function isValidAppId(appId: string): Promise<boolean>
Paramètres
- appId
-
string
ID d’application à valider.
Retours
Promise<boolean>
Le résultat est vrai si appId
est valide pour le contrôleur ; sinon, false.