安全上下文
此特征只可用于
安全上下文
(HTTPS),在某些或所有
支持浏览器
.
response
只读特性在
PublicKeyCredential
interface is an
AuthenticatorResponse
object which is sent from the authenticator to the user agent for the creation/fetching of credentials. The information contained in this response will be used by the relying party's server to verify the demand is legitimate.
An
AuthenticatorResponse
is either:
AuthenticatorAttestationResponse
(when the
PublicKeyCredential
is created via
CredentialsContainer.create()
)
AuthenticatorAssertionResponse
(when the
PublicKeyCredential
is obtained via
CredentialsContainer.get()
).
In order to validate the creation of credentials, a relying party's server needs both:
PublicKeyCredential.getClientExtensionResults()
) to validate the demand.
注意:
When validating the fetching of existing credentials, the whole
PublicKeyCredential
object and the client extensions are necessary for the relying party's server.
注意:
This property may only be used in top-level contexts and will not be available in an
<iframe>
例如。
response = publicKeyCredential.response
AuthenticatorResponse
object containing the data a relying party's script will receive and which should be sent to the relying party's server in order to validate the demand for creation or fetching. This object contains data from the client (
AuthenticatorResponse/clientDataJSON
) and from the authenticator.
var options = {
challenge: new Uint8Array(16) /* from the server */,
rp: {
name: "Example CORP",
id : "login.example.com"
},
user: {
id: new Uint8Array(16) /* from the server */,
name: "jdoe@example.com",
displayName: "John Doe"
},
pubKeyCredParams: [
{
type: "public-key",
alg: -7
}
]
};
navigator.credentials.create({ publickey: options })
.then(function (pubKeyCredential) {
var response = pubKeyCredential.response;
var clientExtResults = pubKeyCredential.getClientExtensionResults();
// Send response and client extensions to the server so that it can validate
// and create credentials
}).catch(function (err) {
// Deal with any error
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web Authentication: An API for accessing Public Key Credentials Level 1
The definition of 'response' in that specification. |
推荐 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
response
|
Chrome
67
|
Edge 18 |
Firefox
60
|
IE No | Opera No | Safari 13 | WebView Android 70 | Chrome Android 70 |
Firefox Android
60
|
Opera Android No | Safari iOS 13.3 | Samsung Internet Android No |
完整支持
不支持
见实现注意事项。
用户必须明确启用此特征。
PublicKeyCredential