共用方式為


UsernamePasswordCredential class

啟用驗證,以使用者的使用者名稱和密碼 Microsoft Entra ID。 此認證需要高度信任,因此您只應該在其他更安全的認證類型無法使用時使用它。

建構函式

UsernamePasswordCredential(string, string, string, string, UsernamePasswordCredentialOptions)

使用使用者名稱和密碼,建立UsernamePasswordCredential的實例,其中包含針對Microsoft Entra ID進行驗證所需的詳細數據。

方法

getToken(string | string[], GetTokenOptions)

使用 Microsoft Entra ID 進行驗證,並在成功時傳回存取令牌。 如果驗證失敗,將會擲回 CredentialUnavailableError 並顯示失敗的詳細數據。

如果使用者提供 選項 disableAutomaticAuthentication,一旦無法以無訊息方式擷取令牌,此方法就不會嘗試要求用戶互動以擷取令牌。

建構函式詳細資料

UsernamePasswordCredential(string, string, string, string, UsernamePasswordCredentialOptions)

使用使用者名稱和密碼,建立UsernamePasswordCredential的實例,其中包含針對Microsoft Entra ID進行驗證所需的詳細數據。

new UsernamePasswordCredential(tenantId: string, clientId: string, username: string, password: string, options?: UsernamePasswordCredentialOptions)

參數

tenantId

string

Microsoft Entra 租使用者 (目錄) 。

clientId

string

用戶端 (應用程式) 租用戶中應用程式註冊的標識碼。

username

string

用戶帳戶的電子郵件位址 (用戶名稱) 。

password

string

用戶帳戶的帳戶密碼

options
UsernamePasswordCredentialOptions

設定發出驗證要求之客戶端的選項。

方法詳細資料

getToken(string | string[], GetTokenOptions)

使用 Microsoft Entra ID 進行驗證,並在成功時傳回存取令牌。 如果驗證失敗,將會擲回 CredentialUnavailableError 並顯示失敗的詳細數據。

如果使用者提供 選項 disableAutomaticAuthentication,一旦無法以無訊息方式擷取令牌,此方法就不會嘗試要求用戶互動以擷取令牌。

function getToken(scopes: string | string[], options?: GetTokenOptions): Promise<AccessToken>

參數

scopes

string | string[]

令牌將具有存取權的範圍清單。

options
GetTokenOptions

用來設定此 TokenCredential 實作之任何要求的選項。

傳回

Promise<AccessToken>