kokokoko05
@kokokoko05

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

Slackで疑似ユーザーグループにメンション機能を付けたい

解決したいこと

エラーを解消し、Slackに問題なく通知させたい

例)
Slackにて、特定のワードが入力された際に、該当メンバーへメンションが飛ぶようにしたい。

<背景>
Slackではゲストアカウントだと、グループが作成できないため

発生している問題・エラー

TypeError: Cannot read properties of undefined (reading 'parameter')

parameterのワードにてundefinedとエラーが出てしまっている

該当するソースコード

function doPost(e) {
  var text = "<@xxxxxx>";
  var verify_token = "xxxxxxxx";
  if (verify_token != e.parameter.token){
  throw new Error("invalid token.");
  }
  var channel = e.parameter.channel_name;
  var ts = e.parameter.timestamp;
  if(e.parameter.thread_ts){
    ts = e.parameter.thread_ts;
  }
  var app = SlackApp.create("xoxb-xxxxxxx");
  var options = {
    thread_ts: ts,
  }
  app.chatPostMessage(channel,text,options );
}

修正点がわかる方教えていただけますと幸いです・・!

0

No Answers yet.

Your answer might help someone💌