如何更换按钮(附件)只有slack交互式按钮响应

时间:2017-03-14 17:54:30

标签: slack-api

我设法使用Google Apps脚本(GAS)创建了一个简单的交互式按钮Slack应用。

我知道如何用响应来替换原始消息,但是我想只更换按钮,如Slack Interactive Button文档中所示(但没有清楚解释)多个位置:
https://api.slack.com/docs/message-buttons#crafting_your_message

我想做这里演示的内容: https://a.slack-edge.com/dcb1/img/api/message_guidelines/Example_6.gif

这是原始邮件的更新,是原始邮件的替换,文本相同但附件不同,......?

我当前的交互式按钮消息代码如下所示:

function sendMsgWithButton() {

// slack channel url (where to send the message)
var slackUrl = "https://hooks.slack.com/services/...";

// message text  
var messageData = {
"text": "Here's your interactive buttons message.",
"attachments": [
    {
        "text": "Can you click the button?",
        "fallback": "Sorry, no support for buttons.",
        "callback_id": "ptNotificationButtonResponse",
        "color": "#3AA3E3",
        "attachment_type": "default",
        "actions": [
            {
                "name": "userResponse",
                "text": "OK",
                "style": "primary",
                "type": "button",
                "value": "ok"
            }
                   ]
    }
                ]
}

// format for Slack
var options = {
   'method' : 'post',
   'contentType': 'application/json',
   // Convert the JavaScript object to a JSON string.
   'payload' : JSON.stringify(messageData)
 };    

// post to Slack
UrlFetchApp.fetch(slackUrl, options);
}

我现在的操作网址代码如下所示:

function doPost() {

var replyMessage = {"replace_original": true,
                    "response_type": "in_channel",
                    "text": "I see you clicked the button."
                   };

 return ContentService.createTextOutput(JSON.stringify(replyMessage)).setMimeType(ContentService.MimeType.JSON);     
}

我不想替换整个原始邮件,而是仅使用复选框和确认消息替换按钮,如上面的gif所示。

谢谢!

1 个答案:

答案 0 :(得分:8)

您只能替换完整的消息,而不仅仅是替换部分。

有两种方法可以更新原始邮件:

  1. 使用{"replace_original": true}

  2. 回复Slack请求
  3. 使用chat.update

  4. 如果您的原始邮件不是ephemeral类型,您将获得原始邮件的副本,作为来自original_message属性中Slack的有效负载的一部分,这有助于更新交换原始信息。

    请参阅Slack文档中的this page作为参考。