files/en-us/web/api/authenticatorresponse/clientdatajson/index.md
{{APIRef("Web Authentication API")}}{{securecontext_header}}
The clientDataJSON property of the {{domxref("AuthenticatorResponse")}} interface stores a JSON string in an
{{jsxref("ArrayBuffer")}}, representing the client data that was passed to {{domxref("CredentialsContainer.create()", "navigator.credentials.create()")}} or {{domxref("CredentialsContainer.get()", "navigator.credentials.get()")}}. This property is only accessed on one of the child objects of AuthenticatorResponse, specifically {{domxref("AuthenticatorAttestationResponse")}} or {{domxref("AuthenticatorAssertionResponse")}}.
An {{jsxref("ArrayBuffer")}}.
After the clientDataJSON object is converted from an
ArrayBuffer to a JavaScript object, it will have the following properties:
challenge
challenge option in
{{domxref("CredentialsContainer.get()")}} or
{{domxref("CredentialsContainer.create()")}}.crossOrigin {{optional_inline}}
true, it means that the calling context is an {{htmlelement("iframe")}} that is not same origin with its ancestor frames.origin
tokenBinding {{optional_inline}} {{deprecated_inline}}
: An object describing the state of the token binding protocol for the communication with the relying party. It has two properties:
status: A string which is either "supported" which
indicates the client support token binding but did not negotiate with the relying
party or "present" when token binding was used alreadyid: A string which is the base64url
encoding of the token binding ID which was used for the communication.Should this property be absent, it would indicate that the client does not support token binding.
[!NOTE]
tokenBindingis deprecated as of Level 3 of the spec, but the field is reserved so that it won't be reused for a different purpose.
topOrigin {{optional_inline}}
crossOrigin is true.type
"webauthn.get" when an existing credential is
retrieved or "webauthn.create" when a new credential is created.function arrayBufferToStr(buf) {
return String.fromCharCode.apply(null, new Uint8Array(buf));
}
// pk is a PublicKeyCredential that is the result of a create() or get() Promise
const clientDataStr = arrayBufferToStr(pk.response.clientDataJSON);
const clientDataObj = JSON.parse(clientDataStr);
console.log(clientDataObj.type); // "webauthn.create" or "webauthn.get"
console.log(clientDataObj.challenge); // base64 encoded String containing the original challenge
console.log(clientDataObj.origin); // the window.origin
{{Specifications}}
{{Compat}}