Skip to content

Commit 159e187

Browse files
authored
Merge pull request oauthinaction#56 from m4v3r1cx23/class-snippets-invalid-token
removed invalid token from JSON in ./class/snippets/3-token-request.js
2 parents ea5a900 + 0165eec commit 159e187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

class/snippets/3-token-request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ app.post("/token", function(req, res){
114114
var token_response = {
115115
access_token: access_token,
116116
token_type: 'Bearer',
117-
scope: code.scope ? code.scope.join(' ') : null;
117+
scope: code.scope ? code.scope.join(' ') : null
118118
};
119119

120120
res.status(200).json(token_response);

0 commit comments

Comments
 (0)