canaille-globuzma/demo/conf-docker/oauth-authorization-server.json

31 lines
1,016 B
JSON

{
"issuer":
"http://localhost:5000",
"authorization_endpoint":
"http://localhost:5000/oauth/authorize",
"token_endpoint":
"http://localhost:5000/oauth/token",
"token_endpoint_auth_methods_supported":
["client_secret_basic", "private_key_jwt",
"client_secret_post", "none"],
"token_endpoint_auth_signing_alg_values_supported":
["RS256", "ES256"],
"userinfo_endpoint":
"http://localhost:5000/oauth/userinfo",
"jwks_uri":
"http://localhost:5000/oauth/jwks.json",
"registration_endpoint":
"http://localhost:5000/oauth/register",
"introspection_endpoint":
"https://mydomain.tld/oauth/introspect",
"scopes_supported":
["openid", "profile", "email", "address",
"phone", "groups"],
"response_types_supported":
["code", "token", "id_token", "code token",
"code id_token", "token id_token"],
"service_documentation":
"http://localhost:5000/documentation.html",
"ui_locales_supported":
["en-US", "en-GB", "en-CA", "fr-FR", "fr-CA"]
}