作るもの
事前準備
- 対象のKintoneアプリでAPI Tokenを発行する。
ポイント
doGet
で、HTMLファイルを返却する
const doGet = (param) => {
const template = HtmlService.createTemplateFromFile('index')
template.url = ScriptApp.getService().getUrl()
return template.evaluate()
}
htmlにて、Javascriptを定義した別ファイルを読み込む
<?!= HtmlService.createHtmlOutputFromFile('client_js').getContent(); ?>
GoogleAppsScriptに定義したFunctionを実行する
google.script.run.withSuccessHandler((response) => {
console.log(response)
}).withFailureHandler((e) => {
console.log(e)
})
.exportKintoneAppData({
param
})
動くものはこちら