Skip to content

Commit 0165eec

Browse files
author
Tomasz Mróz
committed
removed invalid token from JSON in ./class/snippets/3-token-request.js
1 parent ea5a900 commit 0165eec

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)