共用方式為


ClientSecretCredential class

啟用驗證,以使用為應用程式註冊產生的用戶端密碼 Microsoft Entra ID。 如需如何設定用戶端密碼的詳細資訊,請參閱這裡:

https://learn.microsoft.com/entra/identity-platform/quickstart-configure-app-access-web-apis#add-credentials-to-your-web-application

建構函式

ClientSecretCredential(string, string, string, ClientSecretCredentialOptions)

使用用戶端密碼針對 Microsoft Entra ID 進行驗證所需的詳細數據,建立 ClientSecretCredential 的實例。

方法

getToken(string | string[], GetTokenOptions)

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

建構函式詳細資料

ClientSecretCredential(string, string, string, ClientSecretCredentialOptions)

使用用戶端密碼針對 Microsoft Entra ID 進行驗證所需的詳細數據,建立 ClientSecretCredential 的實例。

new ClientSecretCredential(tenantId: string, clientId: string, clientSecret: string, options?: ClientSecretCredentialOptions)

參數

tenantId

string

Microsoft Entra 租使用者 (目錄) 識別符。

clientId

string

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

clientSecret

string

為應用程式註冊產生的用戶端密碼。

options
ClientSecretCredentialOptions

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

方法詳細資料

getToken(string | string[], GetTokenOptions)

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

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

參數

scopes

string | string[]

令牌可存取的範圍清單。

options
GetTokenOptions

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

傳回

Promise<AccessToken>