iEhohs DokuWiki

主にプログラミングなど情シス業務の備忘録です

ユーザ用ツール

サイト用ツール


gas:dm-to-slack

SlackにDMを送信する

const APIToken = 'xoxp-************';
const APIMethodUrl = 'https://slack.com/api/chat.postMessage';
const slackID = 'hoge'
const message = 'こんにちは';
 
const payload = {
    "token": APIToken,
    "channel": slackID,
    "text": message
};
 
const params = {
    "method" : "post",
    "payload" : payload
};
 
UrlFetchApp.fetch(APIMethodUrl, params);
スポンサーリンク
gas/dm-to-slack.txt · 最終更新: 2023/08/18 21:53 by Shohei Okuda