REST Resource: jwks

Resource: PublicJwkSet

The currently active set of public keys that can be used to verify App Check tokens.

This object is a JWK set as specified by section 5 of RFC 7517.

For security, the response must not be cached for longer than six hours.

JSON representation
{
  "keys": [
    {
      object (PublicJwk)
    }
  ]
}
Fields
keys[]

object (PublicJwk)

The set of public keys. See section 5.1 of RFC 7517.

PublicJwk

A JWK as specified by section 4 of RFC 7517 and section 6.3.1 of RFC 7518.

JSON representation
{
  "kty": string,
  "use": string,
  "alg": string,
  "kid": string,
  "n": string,
  "e": string
}
Fields
kty

string

See section 4.1 of RFC 7517.

use

string

See section 4.2 of RFC 7517.

alg

string

See section 4.4 of RFC 7517.

kid

string

See section 4.5 of RFC 7517.

n

string

See section 6.3.1.1 of RFC 7518.

e

string

See section 6.3.1.2 of RFC 7518.

Methods

get

Returns a public JWK set as specified by RFC 7517 that can be used to verify App Check tokens.