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
Oauth recommends not redirecting to redirect_uri in case of invalid client. However, in case of req.query.allowed === 'false', client is not checked at all and an AccessDeniedError is thrown immediately. In AccessDeniedError I want to redirect to redirect uri but oauth2-server has not checked client uri at all. Kindly change the order of checking and throwing errors. InvalidClientError is a higher priority error than AccessDeniedError.
The text was updated successfully, but these errors were encountered:
Oauth recommends not redirecting to redirect_uri in case of invalid client. However, in case of req.query.allowed === 'false', client is not checked at all and an AccessDeniedError is thrown immediately. In AccessDeniedError I want to redirect to redirect uri but oauth2-server has not checked client uri at all. Kindly change the order of checking and throwing errors. InvalidClientError is a higher priority error than AccessDeniedError.
The text was updated successfully, but these errors were encountered: