在线程中响应 Slack Action
Respond to Slack Action in a thread
我一直在使用 Slack 操作 API,但不知道如何使用 response_url
在原始消息的线程中发送回复。
带 chat.postMessage
的选项实际上不起作用,因为它需要手动将机器人添加到频道。
所以我从支持那里得到的答案是:
如果要在线程中响应,需要将response_type
设置为in_channel
,将thread_ts
值设置为与交互负载一起发送的ts值。
的更多信息
我一直在使用 Slack 操作 API,但不知道如何使用 response_url
在原始消息的线程中发送回复。
带 chat.postMessage
的选项实际上不起作用,因为它需要手动将机器人添加到频道。
所以我从支持那里得到的答案是:
如果要在线程中响应,需要将response_type
设置为in_channel
,将thread_ts
值设置为与交互负载一起发送的ts值。