在线程中响应 Slack Action

Respond to Slack Action in a thread

我一直在使用 Slack 操作 API,但不知道如何使用 response_url 在原始消息的线程中发送回复。

chat.postMessage 的选项实际上不起作用,因为它需要手动将机器人添加到频道。

所以我从支持那里得到的答案是:

如果要在线程中响应,需要将response_type设置为in_channel,将thread_ts值设置为与交互负载一起发送的ts值。

有关 responding to actions in thread

的更多信息