SPIRE · Example Payload

Spire Get Jwks Example

AuthenticationCloud NativeGraduatedIdentitySecurityZero Trust

Spire Get Jwks Example is an example object payload from SPIRE, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://oidc-discovery.example.com/keys",
    "headers": {}
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "keys": [
        {
          "kty": "EC",
          "use": "sig",
          "kid": "abc123def456",
          "alg": "ES256",
          "crv": "P-256",
          "x": "f83OJ3D2xF1Bg8vub9tLe1gHMzV76e8Tus9uPHvRVEU",
          "y": "x_FEzRu9m36HLN_tue659LNpXW6pCyStikYjKIWI5a0"
        }
      ]
    }
  }
}