するとこのような画面が出てくるので、作りたいアプリの名前と、そのアプリをどのワークスペースに紐づけるかを設定します。ブラウザでログインしていないワークスペースは選択できるワークスペースに出てこないので、Sign in to another workspaceというところから目的のワークスペースにログインしてください。これでアプリの作成は終わりです。
var token = PropertiesService.getScriptProperties().getProperty("token")
var text = "MESSAGE"
var channel = "CHANNEL NAME"
function post_to_slack() {
post(text, channel)
}
function post(text, channel){
var data = {
"text":text,
"channel":channel
}
var options = {
"method":"post",
"contentType":"application/json",
"headers":{"Authorization":"Bearer "+token},
"payload":JSON.stringify(data)
}
var ret = UrlFetchApp.fetch("https://slack.com/api/chat.postMessage",options)
Logger.log(ret)
}
pal = colorRamp(c("blue", "red"), space="rgb")
pal = colorRamp(c("blue","white","red"),space="rgb")
pal = colorRamp(c("blue","green","yellow","orange","red"),space="rgb")