canaille-globuzma/oidc_ldap_bridge/conf/oauth-authorization-server.sample.json
Éloi Rivard cc4c441088 httpS
2020-08-31 15:15:10 +02:00

29 lines
926 B
JSON

{
"issuer":
"https://mydomain.tld",
"authorization_endpoint":
"https://mydomain.tld/oauth/authorize",
"token_endpoint":
"https://mydomain.tld/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":
"https://mydomain.tld/oauth/userinfo",
"jwks_uri":
"https://mydomain.tld/oauth/jwks.json",
"registration_endpoint":
"https://mydomain.tld/oauth/register",
"scopes_supported":
["openid", "profile", "email", "address",
"phone"],
"response_types_supported":
["code", "token", "id_token", "code token",
"code id_token", "token id_token"],
"service_documentation":
"https://mydomain.tld/documentation.html",
"ui_locales_supported":
["en-US", "en-GB", "en-CA", "fr-FR", "fr-CA"]
}