This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 参考: | |
// http://ma13.hateblo.jp/entry/2015/11/29/151235 | |
// http://tech.camph.net/slack-bot-with-gas/ | |
var todoistApiURL = "https://todoist.com/API/v6/sync"; | |
var slackToken = PropertiesService.getScriptProperties().getProperty('SLACK_ACCESS_TOKEN'); | |
var todoistToken = PropertiesService.getScriptProperties().getProperty('TODOIST_ACCESS_TOKEN') | |
var bot_name = "todoist"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
type: "button" | |
icon: "document" | |
callback: "application:new-file" | |
tooltip: "New File (Ctrl+N)" | |
iconset: "ion" | |
} | |
{ | |
type: 'button' |