我正在使用类似的东西为slackbot创建按钮:
const messageB = {
"attachments": [
{
"text": "Essa mensagem foi útil?",
"callback_id": "button_feedback",
"color": "#3AA3E3",
"attachment_type": "default",
"actions": [
{
"name": "button_click_yes",
"text": "sim",
"type": "button",
"value": "yes"
},
{
"name": "button_click_no",
"text": "não",
"type": "button",
"value": "no"
}
]
}
]
};
但是在发送消息后该按钮仍然有效,并且可以由用户再次使用。我想停用它,或者在使用它之后将其删除。但我无法在文档的任何地方找到它。