我有“代码授权流程”登录,authlib 烧瓶集成运行良好:
redirect_uri = url_for('authorize', _external=True)
return oauth.myOauth2.authorize_redirect(redirect_uri)
出于某种原因,我决定尝试使重定向更加明显。在重定向到对某些人来说可能更陌生的登录页面之前,向用户展示我的应用程序片刻。
现在这种作品:
redirect_uri = url_for('authorize', _external=True)
aurl = oauth.myOauth2.create_authorization_url(redirect_uri)
# what to do with aurl['state']?
return render_template('redirect.html', delay=2,
redirect_notice='Redirecting to login',
redirect_url=aurl['url'])
但是,当我在登录后被重定向回“授权”时,我得到authlib.integrations.base_client.errors.MismatchingStateError: mismatching_state: CSRF Warning! State not equal in request and response.
了我认为是因为我没有保存aurl['state']
.
但我该怎么做呢?我很难弄清楚 authorize_redirect 是如何做到的。
也许有更好的方法?任何帮助表示赞赏!