Skip to content

Commit 6ad9b49

Browse files
committed
updated documentation, and removed unused var
1 parent 7f7a3a3 commit 6ad9b49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sample/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ app.get('/refreshAccessToken', function (req, res) {
9595
oauthClient
9696
.refresh()
9797
.then(function (authResponse) {
98-
console.log(`The Refresh Token is ${JSON.stringify(authResponse.json)}`);
98+
console.log(`\n The Refresh Token is ${JSON.stringify(authResponse.json)}`);
9999
oauth2_token_json = JSON.stringify(authResponse.json, null, 2);
100100
res.send(oauth2_token_json);
101101
})
@@ -118,7 +118,7 @@ app.get('/getCompanyInfo', function (req, res) {
118118
oauthClient
119119
.makeApiCall({ url: `${url}v3/company/${companyID}/companyinfo/${companyID}` })
120120
.then(function (authResponse) {
121-
console.log(`The response for API call is :${JSON.stringify(authResponse.json)}`);
121+
console.log(`\n The response for API call is :${JSON.stringify(authResponse.json)}`);
122122
res.send(authResponse.json);
123123
})
124124
.catch(function (e) {

0 commit comments

Comments
 (0)