code.gitea.io/gitea@v1.22.3/templates/user/auth/oidc_wellknown.tmpl (about) 1 { 2 "issuer": "{{AppUrl | JSEscape}}", 3 "authorization_endpoint": "{{AppUrl | JSEscape}}login/oauth/authorize", 4 "token_endpoint": "{{AppUrl | JSEscape}}login/oauth/access_token", 5 "jwks_uri": "{{AppUrl | JSEscape}}login/oauth/keys", 6 "userinfo_endpoint": "{{AppUrl | JSEscape}}login/oauth/userinfo", 7 "introspection_endpoint": "{{AppUrl | JSEscape}}login/oauth/introspect", 8 "response_types_supported": [ 9 "code", 10 "id_token" 11 ], 12 "id_token_signing_alg_values_supported": [ 13 "{{.SigningKey.SigningMethod.Alg | JSEscape}}" 14 ], 15 "subject_types_supported": [ 16 "public" 17 ], 18 "scopes_supported": [ 19 "openid", 20 "profile", 21 "email", 22 "groups" 23 ], 24 "claims_supported": [ 25 "aud", 26 "exp", 27 "iat", 28 "iss", 29 "sub", 30 "name", 31 "preferred_username", 32 "profile", 33 "picture", 34 "website", 35 "locale", 36 "updated_at", 37 "email", 38 "email_verified", 39 "groups" 40 ], 41 "code_challenge_methods_supported": [ 42 "plain", 43 "S256" 44 ], 45 "grant_types_supported": [ 46 "authorization_code", 47 "refresh_token" 48 ] 49 }