| |
@@ -752,6 +752,8 @@
|
| |
'Token'),
|
| |
'token_introspection_endpoint': '%s%s' % (self.cfg.endpoint_url,
|
| |
'TokenInfo'),
|
| |
+ 'introspection_endpoint': '%s%s' % (self.cfg.endpoint_url,
|
| |
+ 'TokenInfo'),
|
| |
'userinfo_endpoint': '%s%s' % (self.cfg.endpoint_url,
|
| |
'UserInfo'),
|
| |
'jwks_uri': '%s%s' % (self.cfg.endpoint_url,
|
| |
flask-oidc actually wants
introspection_endpoint
, nottoken_introspection_endpoint
. I got mixed up looking at theconfig on a keycloak instance, which sets both. Seems reasonable
to set both here too, so let's do that, rather than removing
token_introspection_endpoint
.Signed-off-by: Adam Williamson awilliam@redhat.com