0
1

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.

1.認証用スクリプト記載したGAS準備[SlackAppで勤怠記録したい]

Last updated at Posted at 2020-06-18

チャンネル指定してSlack投稿を取得
文字をざっくり検索して指定ワードがあったら
Googleスプレッドシートに保存する勤怠記録したいメモ

作業流れ

認証用スクリプト記載したGAS準備

GoogleDriveでスプレッドシートを新規作成

ツール>スクリプトエディタ 下記のコードを記載

NoName_2020-6-18_9-14-15_No-00.png

function doPost(e){
  //バリデーション用
  var params = JSON.parse(e.postData.getDataAsString());
  return ContentService.createTextOutput(params.challenge);
}

function doGet(e){
  doPost(e);
}

NoName_2020-6-17_10-9-42_No-00.png

公開>ウェブサプリケーション公開 を実行

NoName_2020-6-18_9-21-10_No-00.png

赤枠の箇所をAnyoneにするとSlackからアクセス可能になるようです

NoName_2020-6-18_9-22-42_No-00.png

Current web app URL:をメモ

ここで生成されたURLをSlackAPPのSubscriptionで認証させます
NoName_2020-6-18_9-21-23_No-00.png

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?