共用方式為


ICredentialProvider interface

警告

此 API 現已淘汰。

Use ConfigurationBotFrameworkAuthentication instead to configure credentials. CredentialProvider interface. This interface allows Bots to provide their own implementation of what is, and what is not, a valid appId and password. This is useful in the case of multi-tenant bots, where the bot may need to call out to a service to determine if a particular appid/password pair is valid.

For Single Tenant bots (the vast majority) the simple static providers are sufficient.

方法

getAppPassword(string)

取得指定 Bot appId 的應用程式密碼,如果不是有效的 appId,則傳回 Null 此方法是異步的,以啟用可能需要呼叫 Serviced 的自定義實作,以驗證 appId /密碼組。

isAuthenticationDisabled()

檢查 Bot 驗證是否已停用。 如果已停用 Bot 驗證,則傳回 true。 此方法是異步方法,可啟用可能需要呼叫 serviced 的自定義實作,以驗證 appId / 密碼組。

isValidAppId(string)

驗證AppId。 此方法是異步方法,可啟用可能需要呼叫 serviced 的自定義實作,以驗證 appId / 密碼組。

方法詳細資料

getAppPassword(string)

取得指定 Bot appId 的應用程式密碼,如果不是有效的 appId,則傳回 Null 此方法是異步的,以啟用可能需要呼叫 Serviced 的自定義實作,以驗證 appId /密碼組。

function getAppPassword(appId: string): Promise<string | null>

參數

appId

string

bot appid

傳回

Promise<string | null>

無效 appid 的密碼或 null

isAuthenticationDisabled()

檢查 Bot 驗證是否已停用。 如果已停用 Bot 驗證,則傳回 true。 此方法是異步方法,可啟用可能需要呼叫 serviced 的自定義實作,以驗證 appId / 密碼組。

function isAuthenticationDisabled(): Promise<boolean>

傳回

Promise<boolean>

如果已停用 Bot 驗證,則為 true。

isValidAppId(string)

驗證AppId。 此方法是異步方法,可啟用可能需要呼叫 serviced 的自定義實作,以驗證 appId / 密碼組。

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

參數

appId

string

bot appid

傳回

Promise<boolean>

如果它是有效的 AppId,則為 true