Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getServiceAccountIssuerOpenIDKeyset (0.24 sec)

  1. api/openapi-spec/v3/openid__v1__jwks_openapi.json

      "paths": {
        "/openid/v1/jwks/": {
          "get": {
            "description": "get service account issuer OpenID JSON Web Key Set (contains public token verification keys)",
            "operationId": "getServiceAccountIssuerOpenIDKeyset",
            "responses": {
              "200": {
                "content": {
                  "application/jwk-set+json": {
                    "schema": {
                      "type": "string"
                    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 00:49:56 UTC 2022
    - 972 bytes
    - Viewed (0)
  2. pkg/routes/openidmetadata.go

    	jwks.Path(serviceaccount.JWKSPath).Route(
    		jwks.GET("").
    			To(fromStandard(s.serveKeys)).
    			Doc("get service account issuer OpenID JSON Web Key Set (contains public token verification keys)").
    			Operation("getServiceAccountIssuerOpenIDKeyset").
    			// Just include the OK, doesn't look like we include Internal Error in our openapi-spec.
    			Returns(http.StatusOK, "OK", ""))
    	c.Add(jwks)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top