如何使用电报捕获编辑的消息

时间:2019-08-16 08:41:50

标签: node.js telegraf

我需要捕获编辑过的消息。我尝试过:

bot.on("edited.message", ctx => 
{
    console.log("edited")
});

bot.on("update", ctx => 
{
    console.log("edited")
});

但是它不起作用。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

尝试使用此代码:

bot.on('edited_message', (ctx) => {
  console.log(ctx.update.edited_message);
});

您可以在文档中找到的所有可用类型:
https://telegraf.js.org/#/?id=update-types