AuthenticationResponseJSON
A slightly-modified AuthenticationCredential to simplify working with ArrayBuffers that are Base64URL-encoded in the browser so that they can be sent as JSON to the server.
interface AuthenticationResponseJSON {
authenticatorAttachment?: AuthenticatorAttachment;
clientExtensionResults: AuthenticationExtensionsClientOutputs;
id: Base64URLString;
rawId: Base64URLString;
response: AuthenticatorAssertionResponseJSON;
type: PublicKeyCredentialType;
}§Properties
§
authenticatorAttachment?: AuthenticatorAttachment
[src]The authenticator attachment modality in effect at the time of authentication.
§
clientExtensionResults: AuthenticationExtensionsClientOutputs
[src]The results of processing client extensions.
§
The credential ID (same as rawId for JSON).
§
rawId: Base64URLString
[src]The raw credential ID in base64url format.
§
response: AuthenticatorAssertionResponseJSON
[src]The authenticator's response to the client's request to authenticate.