你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
BasicAuthenticationCredentials class
使用用户名和密码进行身份验证的简单 <xref:ServiceClientCredential> 。
构造函数
Basic |
创建新的 BasicAuthenticationCredentials 对象。 |
属性
authorization |
授权方案。 默认为“Basic”。 有关授权方案的详细信息,请参阅此处: https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes |
password | Password |
user |
用户名 |
方法
sign |
使用 Authentication 标头对请求进行签名。 |
构造函数详细信息
BasicAuthenticationCredentials(string, string, string)
创建新的 BasicAuthenticationCredentials 对象。
new BasicAuthenticationCredentials(userName: string, password: string, authorizationScheme?: string)
参数
- userName
-
string
用户名。
- password
-
string
Password。
- 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)
使用 Authentication 标头对请求进行签名。
function signRequest(webResource: WebResourceLike): Promise<WebResourceLike>
参数
- webResource
- WebResourceLike
要签名的 WebResourceLike。
返回
Promise<WebResourceLike>
已签名的请求对象。