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
But flask.Auth.login never uses next_link where it probably should:
log_in_result=self._auth.log_in(
scopes=scopes, # Have user consent to scopes (if any) during log-inredirect_uri=self._redirect_uri,
prompt="select_account", # Optional. More values defined in https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest
)
It seems that adding next_link=next_link as a parameter works.
log_in_result=self._auth.log_in(
scopes=scopes, # Have user consent to scopes (if any) during log-inredirect_uri=self._redirect_uri,
next_link=next_link,
prompt="select_account", # Optional. More values defined in https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest
)
Apologies on how I am quite unfamiliar with GitHub issues. I've read that there's a predefined way to quote and link lines but I don't seem to know how to get that to work.
The text was updated successfully, but these errors were encountered:
(This issue is based on what's in commit 341420da9adc02e498b8bf55fa319d5c091593ff)
flask.Auth.login_required
(which the documentation recommends me to use) callsflask.Auth.login
with a seemingly correctnext_link
attribute:But
flask.Auth.login
never uses next_link where it probably should:It seems that adding
next_link=next_link
as a parameter works.Apologies on how I am quite unfamiliar with GitHub issues. I've read that there's a predefined way to quote and link lines but I don't seem to know how to get that to work.
The text was updated successfully, but these errors were encountered: