You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

oidc_wellknown.tmpl 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "issuer": "{{AppUrl | JSEscape | Safe}}",
  3. "authorization_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/authorize",
  4. "token_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/access_token",
  5. "jwks_uri": "{{AppUrl | JSEscape | Safe}}login/oauth/keys",
  6. "userinfo_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/userinfo",
  7. "introspection_endpoint": "{{AppUrl | JSEscape | Safe}}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 | Safe}}"
  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. }