0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ChatworkとGoogleAppsScript連携

Posted at

#やりたいこと
GoogleAppsScriptを使ってチャットワークにメッセージを送りたい!

#構成

  • Chatwork
  • GoogleAppsScript
    • chatwork-client-gas

#1. Chatworkのアクセストークンを取得

image.png

image.png

image.png

#2. チャットワークのAPIを使ってメッセージを送る
GoogleAppsScriptを使ってチャットワークへメッセージを送るには「chatwork-client-gas」が必要です。
下記リンクからプロダクションコードを取得します。

chatwork-client-gas

image.png

GoogleAppsScriptに下記コマンドを入力

function myFunction() {
  var client = ChatWorkClient.factory({token: '取得したトークン'});
  var message = 'テストメッセージ送信';
  client.sendMessageToMyChat(message);
}

#3.実行
実行時、認証が出ますがOKを押して実行してください。

image.png

問題なければメッセージがチャットワークへ送れます。

image.png

これを使えばカレンダーの通知等をチャットワークで通知するような仕組みもできそうですね。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?