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 a client doesn't request a redirect_uri in an authorization request, oauthlib calls get_default_redirect_uri, and passes this to save_authorization_code. So far, so good.
However, when the redirect is performed, confirm_redirect_uri is called with None as redirect_uri. This doesn't match the redirect_uri saved earlier. Is this intended behavior? It felt wrong for me to have to check for None myself, and repeat getting the default URI from the client datastruct again.