Telegram API 请求用户确认

Telegram API Ask for User Confirmation

我正在尝试在 python-telegram-bot 中制作一个基本的用户提示,要求用户确认 YesNoYes 会继续执行,No 什么都不做。

我目前可以通过

keyboard = [
    [InlineKeyboardButton(u"Yes", callback_data=???)],
    [InlineKeyboardButton(u"No", callback_data=???)]
]
reply_markup = InlineKeyboardMarkup(keyboard)

但是我要将 callback_data 设置为什么?有更好的方法吗?

你可以在那里设置任何你想要的,然后检查那个值

看看这个例子 https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/inlinekeyboard.py