Skip to content

Commit 488ee41

Browse files
authored
Update QuickBooks.gs
Corrected line length per code standard.
1 parent 196c84b commit 488ee41

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

samples/QuickBooks.gs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
2-
* This sample demonstrates how to configure the library for the Intuit Quickbooks API.
3-
* Instructions for obtaining your Client ID and Client Secret can be found here:
2+
* This sample demonstrates how to configure the library for
3+
* the Intuit Quickbooks API. Instructions for obtaining your
4+
* Client ID and Client Secret can be found here:
45
* https://developer.intuit.com/app/developer/qbo/docs/get-started
56
*/
67

@@ -61,18 +62,14 @@ function getService() {
6162
// Set the endpoint URLs.
6263
.setAuthorizationBaseUrl('https://appcenter.intuit.com/connect/oauth2')
6364
.setTokenUrl('https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer')
64-
6565
// Set the client ID and secret.
6666
.setClientId(CLIENT_ID)
6767
.setClientSecret(CLIENT_SECRET)
68-
6968
// Required, set to Accounting for this example, see QB developer portal for additional options.
7069
.setScope('com.intuit.quickbooks.accounting')
71-
7270
// Set the name of the callback function in the script referenced
7371
// above that should be invoked to complete the OAuth flow.
7472
.setCallbackFunction('authCallback')
75-
7673
// Set the property store where authorized tokens should be persisted.
7774
.setPropertyStore(PropertiesService.getUserProperties());
7875
}

0 commit comments

Comments
 (0)