PublicKeyCredential: rawId 属性
rawId
是 PublicKeyCredential
接口的只读属性,它是一个 ArrayBuffer
对象,包含凭据的标识符。
PublicKeyCredential.id
属性是该标识符的 base64url 编码 版本。
注意:此属性只能在顶级上下文中使用,例如,它在 <iframe>
中不可用。
值
包含凭据标识符的 ArrayBuffer
。该标识符预计是全局唯一的,并被分配给当前的 PublicKeyCredential
及其关联的 AuthenticatorAssertionResponse
。
示例
js
const options = {
challenge: new Uint8Array(26) /* from the server */,
rp: {
name: "Example CORP",
id: "login.example.com",
},
user: {
id: new Uint8Array(26) /* To be changed for each user */,
name: "[email protected]",
displayName: "Carina Anand",
},
pubKeyCredParams: [
{
type: "public-key",
alg: -7,
},
],
};
navigator.credentials
.create({ publicKey: options })
.then((pubKeyCredential) => {
const rawId = pubKeyCredential.rawId;
// Do something with rawId
})
.catch((err) => {
// Deal with any error
});
规范
规范 |
---|
Web 身份验证:访问公钥凭据的 API - 第 3 级 # ref-for-dom-publickeycredential-rawid |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。