Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for response_types_supported (0.31 sec)

  1. internal/config/identity/openid/provider/provider.go

    	RevocationEndpoint               string   `json:"revocation_endpoint,omitempty"`
    	JwksURI                          string   `json:"jwks_uri,omitempty"`
    	ResponseTypesSupported           []string `json:"response_types_supported,omitempty"`
    	SubjectTypesSupported            []string `json:"subject_types_supported,omitempty"`
    	IDTokenSigningAlgValuesSupported []string `json:"id_token_signing_alg_values_supported,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/serviceaccount/openidmetadata_test.go

    // https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
    type Configuration struct {
    	Issuer        string   `json:"issuer"`
    	JWKSURI       string   `json:"jwks_uri"`
    	ResponseTypes []string `json:"response_types_supported"`
    	SigningAlgs   []string `json:"id_token_signing_alg_values_supported"`
    	SubjectTypes  []string `json:"subject_types_supported"`
    }
    
    func TestServeConfiguration(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. docs/sts/web-identity.go

    	RevocationEndpoint               string   `json:"revocation_endpoint,omitempty"`
    	JwksURI                          string   `json:"jwks_uri,omitempty"`
    	ResponseTypesSupported           []string `json:"response_types_supported,omitempty"`
    	SubjectTypesSupported            []string `json:"subject_types_supported,omitempty"`
    	IDTokenSigningAlgValuesSupported []string `json:"id_token_signing_alg_values_supported,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. internal/config/identity/openid/jwt.go

    	RevocationEndpoint               string   `json:"revocation_endpoint,omitempty"`
    	JwksURI                          string   `json:"jwks_uri,omitempty"`
    	ResponseTypesSupported           []string `json:"response_types_supported,omitempty"`
    	SubjectTypesSupported            []string `json:"subject_types_supported,omitempty"`
    	IDTokenSigningAlgValuesSupported []string `json:"id_token_signing_alg_values_supported,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/serviceaccount/openidmetadata.go

    	JWKSURI       string   `json:"jwks_uri"`                              // REQUIRED in OIDC; meaningful to relying parties.
    	ResponseTypes []string `json:"response_types_supported"`              // REQUIRED in OIDC
    	SubjectTypes  []string `json:"subject_types_supported"`               // REQUIRED in OIDC
    	SigningAlgs   []string `json:"id_token_signing_alg_values_supported"` // REQUIRED in OIDC
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
Back to top