我创建了一个斜杠命令“/myMeetings”,这实际上是配置了一个 requestURL - https://slack.mycompany.com/slack
所以现在我的用例是发送一个包含两条文本消息的响应,其中一个是临时类型,另一个是 in_channel 的消息
request_type - in_channel
and
request_type - ephemeral
像这样的东西
[
{
"response_type": "in_channel",
"text": "This message will be shown to the entire channel"
},
{
"response_type": "ephemeral",
"text": "only shown to the user who initiates slash command"
}
]
我怎样才能实现这种行为?