共用方式為


PasswordServiceClientCredentialFactory class

ServiceClientCredentialsFactory 介面的簡單實作。

建構函式

PasswordServiceClientCredentialFactory(string, string)

初始化 PasswordServiceClientCredentialFactory 類別的新實例。

PasswordServiceClientCredentialFactory(string, string, string)

初始化 PasswordServiceClientCredentialFactory 類別的新實例。

屬性

appId

此認證的應用程式識別碼。

password

此認證的應用程式密碼。

tenantId

建立 Bot 之 Azure AD 租使用者的租用戶標識碼。

方法

createCredentials(string, string, string, boolean)

用來建立 ServiceClientCredentials 的 Factory 方法。

isAuthenticationDisabled()

檢查 Bot 驗證是否已停用。

isValidAppId(string)

驗證應用程式識別碼。

建構函式詳細資料

PasswordServiceClientCredentialFactory(string, string)

初始化 PasswordServiceClientCredentialFactory 類別的新實例。

new PasswordServiceClientCredentialFactory(appId: string, password: string)

參數

appId

string

應用程式識別碼。

password

string

應用程式密碼。

PasswordServiceClientCredentialFactory(string, string, string)

初始化 PasswordServiceClientCredentialFactory 類別的新實例。

new PasswordServiceClientCredentialFactory(appId: string, password: string, tenantId: string)

參數

appId

string

應用程式識別碼。

password

string

應用程式密碼。

tenantId

string

建立 Bot 之 Azure AD 租使用者的租用戶標識碼。

屬性詳細資料

appId

此認證的應用程式識別碼。

appId: string | null

屬性值

string | null

password

此認證的應用程式密碼。

password: string | null

屬性值

string | null

tenantId

建立 Bot 之 Azure AD 租使用者的租用戶標識碼。

tenantId: string | null

屬性值

string | null

方法詳細資料

createCredentials(string, string, string, boolean)

用來建立 ServiceClientCredentials 的 Factory 方法。

function createCredentials(appId: string, audience: string, loginEndpoint: string, validateAuthority: boolean): Promise<ServiceClientCredentials>

參數

appId

string

appId。

audience

string

觀眾。

loginEndpoint

string

登入 URL。

validateAuthority

boolean

要使用的驗證授權單位值。

傳回

Promise<ServiceClientCredentials>

代表作業結果的 Promise。

isAuthenticationDisabled()

檢查 Bot 驗證是否已停用。

function isAuthenticationDisabled(): Promise<boolean>

傳回

Promise<boolean>

使用驗證結果承諾。

isValidAppId(string)

驗證應用程式識別碼。

function isValidAppId(appId?: string): Promise<boolean>

參數

appId

string

要驗證的 appId。

傳回

Promise<boolean>

使用驗證結果承諾。