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
Currently, any login errors (such as aborted logins or token exchange errors) are completely ignored. This is obviously not good and should be improved.
At least the following error handlers should be implemented:
The provided OpenidConfig can be invalid which results in getServiceConfiguration not succeeding
Token renewal in renewTokens may fail if the refresh token is expired or the user has revoked the session (logged out)
The authorization flow may fail or get aborted which results in doAuthorizationCallback not succeeding because no code is available as query parameter. Instead, the authorization notifier will be called with a non-null error that needs to be handled.
The text was updated successfully, but these errors were encountered:
Currently, any login errors (such as aborted logins or token exchange errors) are completely ignored. This is obviously not good and should be improved.
At least the following error handlers should be implemented:
OpenidConfig
can be invalid which results ingetServiceConfiguration
not succeedingrenewTokens
may fail if the refresh token is expired or the user has revoked the session (logged out)doAuthorizationCallback
not succeeding because no code is available as query parameter. Instead, the authorization notifier will be called with a non-null error that needs to be handled.The text was updated successfully, but these errors were encountered: