We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0ed55 commit 655dba3Copy full SHA for 655dba3
samples/Notion.gs
@@ -21,7 +21,8 @@ function run() {
21
Logger.log(JSON.stringify(result, null, 2));
22
} else {
23
var authorizationUrl = service.getAuthorizationUrl();
24
- Logger.log('Open the following URL and re-run the script: %s', authorizationUrl);
+ Logger.log('Open the following URL and re-run the script: %s',
25
+ authorizationUrl);
26
}
27
28
@@ -53,7 +54,8 @@ function getService() {
53
54
.setPropertyStore(PropertiesService.getUserProperties())
55
56
.setTokenHeaders({
- 'Authorization': 'Basic ' + Utilities.base64Encode(CLIENT_ID + ':' + CLIENT_SECRET)
57
+ 'Authorization': 'Basic ' +
58
+ Utilities.base64Encode(CLIENT_ID + ':' + CLIENT_SECRET)
59
});
60
61
0 commit comments