次の方法で共有


BasicAuthenticationCredentials class

ユーザー名とパスワードを使用して認証を行うシンプルな <xref:ServiceClientCredential> 。

コンストラクター

BasicAuthenticationCredentials(string, string, string)

新しい BasicAuthenticationCredentials オブジェクトを作成します。

プロパティ

authorizationScheme

承認スキームを設けます。 既定値は "Basic" です。 承認スキームの詳細については、こちらを参照してください。 https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes

password

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

password: string

プロパティ値

string

userName

ユーザー名

userName: string

プロパティ値

string

メソッドの詳細

signRequest(WebResourceLike)

認証ヘッダーを使用して要求に署名します。

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

パラメーター

webResource
WebResourceLike

署名する WebResourceLike。

戻り値

Promise<WebResourceLike>

署名された要求オブジェクト。