PublicKeyCredential: rawId property
The rawId
read-only property of the PublicKeyCredential
interface is an ArrayBuffer
object containing the identifier of the credentials.
The PublicKeyCredential.id
property is a base64url encoded version of this identifier.
Note: This property may only be used in top-level contexts and will not be available in an <iframe>
for example.
Value
A ArrayBuffer
containing the identifier of the credentials. This identifier is expected to be globally unique and is appointed for the current PublicKeyCredential
and its associated AuthenticatorAssertionResponse
.
Examples
const options = {
challenge: new Uint8Array(26) ,
rp: {
name: "Example CORP",
id: "login.example.com",
},
user: {
id: new Uint8Array(26) ,
name: "canand@example.com",
displayName: "Carina Anand",
},
pubKeyCredParams: [
{
type: "public-key",
alg: -7,
},
],
};
navigator.credentials
.create({ publicKey: options })
.then((pubKeyCredential) => {
const rawId = pubKeyCredential.rawId;
})
.catch((err) => {
});
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
rawId |
67 |
18 |
60Only supports USB U2F tokens.
|
No |
54 |
13 |
No |
70 |
92
60–92Only supports USB U2F tokens.
|
49 |
13 |
10.0 |