2021-04-15 22:32:00 -04:00
|
|
|
{
|
|
|
|
"issuer": "{{AppUrl | JSEscape | Safe}}",
|
|
|
|
"authorization_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/authorize",
|
|
|
|
"token_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/access_token",
|
2021-06-17 17:56:46 -04:00
|
|
|
"jwks_uri": "{{AppUrl | JSEscape | Safe}}login/oauth/keys",
|
2021-05-06 01:30:15 -04:00
|
|
|
"userinfo_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/userinfo",
|
2021-08-20 22:16:45 -04:00
|
|
|
"introspection_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/introspect",
|
2021-04-15 22:32:00 -04:00
|
|
|
"response_types_supported": [
|
|
|
|
"code",
|
|
|
|
"id_token"
|
2021-06-14 06:33:16 -04:00
|
|
|
],
|
2021-06-17 17:56:46 -04:00
|
|
|
"id_token_signing_alg_values_supported": [
|
|
|
|
"{{.SigningKey.SigningMethod.Alg | JSEscape | Safe}}"
|
|
|
|
],
|
|
|
|
"subject_types_supported": [
|
|
|
|
"public"
|
|
|
|
],
|
2021-06-14 06:33:16 -04:00
|
|
|
"scopes_supported": [
|
|
|
|
"openid",
|
|
|
|
"profile",
|
2021-10-22 05:19:24 -04:00
|
|
|
"email",
|
|
|
|
"groups"
|
2021-06-14 06:33:16 -04:00
|
|
|
],
|
|
|
|
"claims_supported": [
|
|
|
|
"aud",
|
|
|
|
"exp",
|
|
|
|
"iat",
|
|
|
|
"iss",
|
|
|
|
"sub",
|
|
|
|
"name",
|
|
|
|
"preferred_username",
|
|
|
|
"profile",
|
|
|
|
"picture",
|
|
|
|
"website",
|
|
|
|
"locale",
|
|
|
|
"updated_at",
|
|
|
|
"email",
|
2021-10-22 05:19:24 -04:00
|
|
|
"email_verified",
|
|
|
|
"groups"
|
2021-06-14 06:33:16 -04:00
|
|
|
],
|
|
|
|
"code_challenge_methods_supported": [
|
|
|
|
"plain",
|
|
|
|
"S256"
|
|
|
|
],
|
|
|
|
"grant_types_supported": [
|
|
|
|
"authorization_code",
|
|
|
|
"refresh_token"
|
2021-04-15 22:32:00 -04:00
|
|
|
]
|
|
|
|
}
|