Partager via


BasicAuthenticationCredentials class

Simple <xref:ServiceClientCredential> qui s’authentifie avec un nom d’utilisateur et un mot de passe.

Constructeurs

BasicAuthenticationCredentials(string, string, string)

Crée un objet BasicAuthenticationCredentials.

Propriétés

authorizationScheme

Schéma d’autorisation. La valeur par défaut est « De base ». Vous trouverez plus d’informations sur les schémas d’autorisation ici : https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes

password

Mot de passe

userName

Nom d’utilisateur

Méthodes

signRequest(WebResourceLike)

Signe une demande avec l’en-tête Authentification.

Détails du constructeur

BasicAuthenticationCredentials(string, string, string)

Crée un objet BasicAuthenticationCredentials.

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

Paramètres

userName

string

Nom d’utilisateur.

password

string

Password.

authorizationScheme

string

Schéma d’autorisation.

Détails de la propriété

authorizationScheme

Schéma d’autorisation. La valeur par défaut est « De base ». Vous trouverez plus d’informations sur les schémas d’autorisation ici : https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes

authorizationScheme: string

Valeur de propriété

string

password

Mot de passe

password: string

Valeur de propriété

string

userName

Nom d’utilisateur

userName: string

Valeur de propriété

string

Détails de la méthode

signRequest(WebResourceLike)

Signe une demande avec l’en-tête Authentification.

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

Paramètres

webResource
WebResourceLike

WebResourceLike à signer.

Retours

Promise<WebResourceLike>

Objet de requête signé.