BasicAuthenticationCredentials class
<xref:ServiceClientCredential> Semplice che esegue l'autenticazione con un nome utente e una password.
Costruttori
Basic |
Crea un nuovo oggetto BasicAuthenticationCredentials. |
Proprietà
authorization |
Schema di autorizzazione. Impostazioni predefinite su "Basic". Altre informazioni sugli schemi di autorizzazione sono disponibili qui: https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes |
password | Password |
user |
Username |
Metodi
sign |
Firma una richiesta con l'intestazione Autenticazione. |
Dettagli costruttore
BasicAuthenticationCredentials(string, string, string)
Crea un nuovo oggetto BasicAuthenticationCredentials.
new BasicAuthenticationCredentials(userName: string, password: string, authorizationScheme?: string)
Parametri
- userName
-
string
Nome utente.
- password
-
string
Password.
- authorizationScheme
-
string
Schema di autorizzazione.
Dettagli proprietà
authorizationScheme
Schema di autorizzazione. Impostazioni predefinite su "Basic". Altre informazioni sugli schemi di autorizzazione sono disponibili qui: https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes
authorizationScheme: string
Valore della proprietà
string
password
Password
password: string
Valore della proprietà
string
userName
Username
userName: string
Valore della proprietà
string
Dettagli metodo
signRequest(WebResourceLike)
Firma una richiesta con l'intestazione Autenticazione.
function signRequest(webResource: WebResourceLike): Promise<WebResourceLike>
Parametri
- webResource
- WebResourceLike
WebResourceLike da firmare.
Restituisce
Promise<WebResourceLike>
Oggetto request firmato.