github.com/argoproj/argo-cd@v1.8.7/util/oidc/testdata/dex.json (about) 1 { 2 "issuer": "https://argocd.example.com/api/dex", 3 "authorization_endpoint": "https://argocd.example.com/api/dex/auth", 4 "token_endpoint": "https://argocd.example.com/api/dex/token", 5 "jwks_uri": "https://argocd.example.com/api/dex/keys", 6 "response_types_supported": [ 7 "code" 8 ], 9 "subject_types_supported": [ 10 "public" 11 ], 12 "id_token_signing_alg_values_supported": [ 13 "RS256" 14 ], 15 "scopes_supported": [ 16 "openid", 17 "email", 18 "groups", 19 "profile", 20 "offline_access" 21 ], 22 "token_endpoint_auth_methods_supported": [ 23 "client_secret_basic" 24 ], 25 "claims_supported": [ 26 "aud", 27 "email", 28 "email_verified", 29 "exp", 30 "iat", 31 "iss", 32 "locale", 33 "name", 34 "sub" 35 ] 36 }