You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When "code" is enabled as response_types_supported in OpenIDConnectFrontend configuration, Provider refuses to instantiate due to missing required token_endpoint. This endpoint will be added later in code where response_types_supported is evaluated (#171) but then it's too late. Adding the following line in frontend/openid_connect.py@74 works around the exception.
"token_endpoint": True
It's a quick'n'dirty fix but silences the Provider constructor, while eventually creating a correct token_endpoint after completing register_endpoints() anyway.