forked from Github-Mirrors/canaille
Added introspection_endpoint to discovery configuration files
This commit is contained in:
parent
4f5d18d689
commit
6a16590915
4 changed files with 8 additions and 0 deletions
|
@ -12,6 +12,8 @@
|
|||
["RS256", "ES256"],
|
||||
"userinfo_endpoint":
|
||||
"https://mydomain.tld/oauth/userinfo",
|
||||
"introspection_endpoint":
|
||||
"https://mydomain.tld/oauth/introspect",
|
||||
"jwks_uri":
|
||||
"https://mydomain.tld/oauth/jwks.json",
|
||||
"registration_endpoint":
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
"https://mydomain.tld/oauth/jwks.json",
|
||||
"registration_endpoint":
|
||||
"https://mydomain.tld/oauth/register",
|
||||
"introspection_endpoint":
|
||||
"https://mydomain.tld/oauth/introspect",
|
||||
"scopes_supported":
|
||||
["openid", "profile", "email", "address",
|
||||
"phone", "groups"],
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
"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"],
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
"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"],
|
||||
|
|
Loading…
Reference in a new issue