Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ResponseTypes (0.16 sec)

  1. docs/sts/dex.yaml

      logger:
        level: "debug"
        format: "text" # can also be "json"
    
    # Default values shown below
    oauth2:
      # use ["code", "token", "id_token"] to enable implicit flow for web-only clients
      responseTypes: [ "code", "token", "id_token" ] # also allowed are "token" and "id_token"
      # By default, Dex will ask for approval to share data with application
      # (approval for sharing data from connected IdP to Dex is separate process on IdP)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 15 11:55:55 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  2. 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  3. 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)
Back to top