gpt4 book ai didi

rocket.chat - 如何从 hubot 发送格式化消息到 Rocketchat?

转载 作者:行者123 更新时间:2023-12-02 03:53:43 25 4
gpt4 key购买 nike

我想从 hubot 准备格式化消息到 Rocketchat,但我找不到任何引用。

这是我的主要引用: http://theprogrammingbutler.com/blog/archives/2011/10/28/hubot-scripts-explained/

我已经尝试过这个:

    msg.http(url)
.headers("PRIVATE-TOKEN": api_key, Accept: 'application/json')
.get() (err, response, body) ->
try
json = JSON.parse(body)

for issue in json
msg.send "#{issue.title}"
catch error
msg.send "Sistema not found."
console.log(error)

但我想要一些更丰富、更详细的内容。

有什么建议吗?

谢谢。

最佳答案

Rocket.Chat 的 hubot 适配器有一个名为 customMessage 的方法。您可以像使用 slack 一样添加附件来实现丰富的消息。

要使用customMessage,请使用如下所示的内容:

robot.adapter.customMessage({
channel: room,
attachments: [
{
title: "New Event",
title_link: "http://example.com/event",
text: "<img src=\"http://example.com/picture\" width=\"20\" /> <a href=\"http://example.com/events/1234\">Event 1234</a>: <br /> urgent event"
}
]
});

关于rocket.chat - 如何从 hubot 发送格式化消息到 Rocketchat?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44729871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com