ExchangeAppAttestAttestationResponse

Response message for the ExchangeAppAttestAttestation method.

JSON representation
{
  "artifact": string,
  "attestationToken": {
    object (AttestationTokenResponse)
  },
  "appCheckToken": {
    object (AppCheckToken)
  }
}
Fields
artifact

string (bytes format)

An artifact that can be used in future calls to ExchangeAppAttestAssertion.

A base64-encoded string.

attestationToken
(deprecated)

object (AttestationTokenResponse)

Encapsulates an App Check token.

appCheckToken

object (AppCheckToken)

Encapsulates an App Check token.

AttestationTokenResponse

Encapsulates an App Check token, which are used to access Firebase services protected by App Check.

JSON representation
{
  "attestationToken": string,
  "ttl": string
}
Fields
attestationToken

string

An App Check token.

App Check tokens are signed JWTs containing claims that identify the attested app and Firebase project. This token is used to access Firebase services protected by App Check.

ttl

string (Duration format)

The duration from the time this token is minted until its expiration. This field is intended to ease client-side token management, since the client may have clock skew, but is still able to accurately measure a duration.

A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".