共用方式為


BasicAuthenticationCredentials class

使用使用者名稱和密碼進行驗證的簡單 <xref:ServiceClientCredential> 。

建構函式

BasicAuthenticationCredentials(string, string, string)

建立新的 BasicAuthenticationCredentials 物件。

屬性

authorizationScheme

授權配置。 預設為 「Basic」。 如需授權配置的詳細資訊,請參閱這裡: https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes

password

密碼

userName

使用者名稱

方法

signRequest(WebResourceLike)

使用驗證標頭簽署要求。

建構函式詳細資料

BasicAuthenticationCredentials(string, string, string)

建立新的 BasicAuthenticationCredentials 物件。

new BasicAuthenticationCredentials(userName: string, password: string, authorizationScheme?: string)

參數

userName

string

使用者名稱。

password

string

密碼。

authorizationScheme

string

授權配置。

屬性詳細資料

authorizationScheme

授權配置。 預設為 「Basic」。 如需授權配置的詳細資訊,請參閱這裡: https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes

authorizationScheme: string

屬性值

string

password

密碼

password: string

屬性值

string

userName

使用者名稱

userName: string

屬性值

string

方法詳細資料

signRequest(WebResourceLike)

使用驗證標頭簽署要求。

function signRequest(webResource: WebResourceLike): Promise<WebResourceLike>

參數

webResource
WebResourceLike

要簽署的 WebResourceLike。

傳回

Promise<WebResourceLike>

已簽署的要求物件。