top of page
- API -

postedMessage = reaper.AZ_Slack_PostChannelMessage(token, channel, message, mentionList)

- API Detail-

▼入力値

  • token(string) : トークン(アプリ識別子)

  • channel(string) : チャンネル(ID or 名前)

  • message(string) : メッセージ

  • mentionList(StringMap) : メンションリスト(ID or 名前)(任意 デフォルト : 空)

        - チャンネル全体 : !channel

        - グループメンション : !【チャンネル名orID】

        - 個人メンション : @【名前orID】



▼出力値

  • postedMessage(SlackMessage) : 送信したメッセージ

        - Result : 送信の成否

        - Channel : チャンネルのID

        - TimeStamp : 親スレッドのタイムスタンプ

        - ThreadTimeStamp : メッセージのタイムスタンプ

        - Message : 送信したメッセージ

        - Error : エラーの内容(エラー時のみ)

    - 



※本APIを使用するにはSlack Botを作成する必要があります。詳しくはこちらをご参照ください。

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


token = "........" -- Bot token to use

channel = "........" -- Channel Name

message = "TEST\ntest"

mentionList = {"!channel", "!xxx", "@yyy"} -- Group name to mention, username


slackMessage = reaper.AZ_Slack_PostChannelMessage(token, channel, message, mentionList)


ShowObject(slackMessage)


Msg(reaper.AZ_GetErrorCode())

Slack

AZ_Slack_PostChannelMessage

Supported versions:

1.2.0

onwards

チャンネルにメッセージを送信する

bottom of page