如何让我的 Slack Bot 以话题形式回复?

发布于 2025-01-14 01:26:09 字数 720 浏览 0 评论 0 原文

我有一个机器人,旨在用它正在侦听的某些关键字回复频道中的消息。我已经部署了它,并且工作正常,但它在频道中回复,而不是启动一个线程来回复用户的消息。这是我的用于启动线程的代码:

app.message("ake up", async ({ command, say }) => {
  try {
    say({ text: "I'm awake! ⭐️ Do you need assistance?", thread_ts: message.ts });
  } catch (error) {
      console.log("err")
    console.error(error);
  }
});

当我发送一条消息说“醒来”时,没有任何反应。当没有 thread_ts: message.ts 且只是说 say("I'm awake! ⭐️ 你需要帮助吗?")} 时,它工作得很好。并对此做出回应。

这是我的代码的开头供参考:

require("dotenv").config();
const app = new App({
  token: process.env.SLACK_BOT_TOKEN,
  signingSecret: process.env.SLACK_SIGNING_SECRET,
  socketMode:true,
  appToken: process.env.APP_TOKEN
});

I have a bot that's meant to reply to messages in a channel with certain keywords it's listening for. I have it deployed and it's working perfectly, but it replies in the channel rather than starting a thread to a user's message. Here's my code that's meant to start the thread:

app.message("ake up", async ({ command, say }) => {
  try {
    say({ text: "I'm awake! ⭐️ Do you need assistance?", thread_ts: message.ts });
  } catch (error) {
      console.log("err")
    console.error(error);
  }
});

Nothing happens when I send a message saying "wake up". When it's the same without thread_ts: message.ts and just says say("I'm awake! ⭐️ Do you need assistance?")}, it works perfectly. and responds with that.

Here's the beginning of my code for reference:

require("dotenv").config();
const app = new App({
  token: process.env.SLACK_BOT_TOKEN,
  signingSecret: process.env.SLACK_SIGNING_SECRET,
  socketMode:true,
  appToken: process.env.APP_TOKEN
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱,才寂寞 2025-01-21 01:26:09

这是在 GitHub 上回答的

这里的技巧是 thread_ts 仅适用于线程消息(它标识启动线程的父消息)。如果要启动线程,可以使用传入消息的 ts 值:

app.message("ake up", async ({ message, say }) => {
  try {
      await say({ text: "I'm awake! ⭐️ Do you need assistance?" , thread_ts: message.thread_ts || message.ts});
  } catch (error) {
      console.log("err")
      console.error(error);
  }
});

另请参阅 发现线程指南。

This was answered on GitHub.

The trick here is that thread_ts is available only for threaded messages (it identifies the parent message which started the thread). If you want to start a thread, you can use ts value of the incoming message:

app.message("ake up", async ({ message, say }) => {
  try {
      await say({ text: "I'm awake! ⭐️ Do you need assistance?" , thread_ts: message.thread_ts || message.ts});
  } catch (error) {
      console.log("err")
      console.error(error);
  }
});

See also Spotting threads guide in Slack docs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文