用于频道消息的Telegram bot内联键盘标记回调用法

时间:2017-10-19 11:34:57

标签: javascript node.js keyboard telegram telegram-bot

我的Telegram机器人需要向频道发送消息并为每条消息提供内联键盘,如下所示:inline message keyboard

我需要对此键盘按钮点击事件做出反应,但我找不到显示如何操作的文档或示例。 Here in docs我只能看到这些按钮可以打开网址或切换聊天,但这不是我需要的功能。

目前我的消息发送代码如下(我使用NodeJS Telegraf框架):

const Telegraf = require('telegraf');
const { Markup, Telegram } = Telegraf;

const telegram = new Telegram(process.env.BOT_TOKEN);

const inlineMessageRatingKeyboard = [[
    { text: '', callback_data: 'like' },
    { text: '', callback_data: 'dislike' }
]];

telegram.sendMessage(
    process.env.TELEGRAM_CHANNEL,
    'test',
    { reply_markup: JSON.stringify({ inline_keyboard: inlineMessageRatingKeyboard }) }
    )
);

所以,我需要知道,如何让机器人对频道消息中的内联消息键盘交互作出反应。

1 个答案:

答案 0 :(得分:2)

您可以使用事件action()或使用callbackQuery()answerCallbackQuery()的TelegrafContext GitHubGist

上的上下文方法

它的工作:

const Telegraf = require('telegraf')
const { Router, Markup } = Telegraf

const telegram = new Telegraf(process.env.BOT_TOKEN)

const inlineMessageRatingKeyboard = Markup.inlineKeyboard([
    Markup.callbackButton('', 'like'),
    Markup.callbackButton('', 'dislike')
]).extra()

telegram.on('message', (ctx) => ctx.telegram.sendMessage(
    ctx.from.id,
    'Like?',
    inlineMessageRatingKeyboard)
)

telegram.action('like', (ctx) => ctx.editMessageText(' Awesome! '))
telegram.action('dislike', (ctx) => ctx.editMessageText('okey'))

telegram.startPolling()

完整示例here