node-oauth2-server
node-oauth2-server copied to clipboard
saveToken passes wrong parameter
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 .
This project should closed or another maintainer should be assigned