烧瓶-OIDC。如何绕过开发环境的身份验证

时间:2019-08-05 15:56:27

标签: flask flask-oidc

我正在使用flask-oidc扩展,并希望在dev中测试以允许所有请求时绕过oidc身份验证协议(它与keycloak对话)。我当前的设置类似于:

credentials_store = dict()
oidc = OpenIDConnect(app, credentials_store=credentials_store)
...
@app.route('/app/hello')
@oidc.require_login
def hello():
   ...

在开发环境中,无需让require_login注释就可以通过请求的情况下,我可以传递什么配置

0 个答案:

没有答案