SPIRE · Example Payload

Spire Get Openid Configuration Example

AuthenticationCloud NativeGraduatedIdentitySecurityZero Trust

Spire Get Openid Configuration 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/.well-known/openid-configuration",
    "headers": {}
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "issuer": "https://oidc-discovery.example.com",
      "jwks_uri": "https://oidc-discovery.example.com/keys",
      "authorization_endpoint": "https://oidc-discovery.example.com/authorize",
      "response_types_supported": ["id_token"],
      "subject_types_supported": ["public"],
      "id_token_signing_alg_values_supported": ["RS256", "ES256", "ES384"]
    }
  }
}