We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib/grant-types/authorization-code-grant-type.js Line 77
The function returns: return this.saveToken(code.user, client, code.authorizationCode, code.scope);
return this.saveToken(code.user, client, code.authorizationCode, code.scope);
As per the documentation, code.authorizationCode is never passed, the actual authorization code is passed as code.code .
The text was updated successfully, but these errors were encountered:
This project should closed or another maintainer should be assigned
Sorry, something went wrong.
code.authorizationCode
code.code
Successfully merging a pull request may close this issue.
lib/grant-types/authorization-code-grant-type.js
Line 77
The function returns:
return this.saveToken(code.user, client, code.authorizationCode, code.scope);
As per the documentation, code.authorizationCode is never passed, the actual authorization code is passed as code.code .
The text was updated successfully, but these errors were encountered: