昨天獎了 先來介紹一下什麼是 CallbackQueryHandler 。
CallbackQuery 就是當我們透過 InlineKeyboard 的按鈕觸發時會回傳的動作(再次重申,不包括 ReplyKeyboard 的按鈕),就類似 Line Bot 的 PostbackEvent 。
那麼我們就來實際操作一下吧!
import os
import logging
from telegram import Update
from telegram import (ReplyKeyboardMarkup, KeyboardButton,
ReplyKeyboardRemove) # New
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
from telegram.ext import Updater
from telegram.ext import (CallbackContext, Filters, MessageHandler,
CommandHandler, CallbackQueryHandler)
''' Get envrion param '''
TOKEN = os.environ["TOKEN"]
''' logging '''
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
level=logging.DEBUG)
logger = logging.getLogger(__name__)
''' Bot init '''
updater = Updater(token=TOKEN)
dispatcher = updater.dispatcher
# 建立 InlineKeyboard
keyboard_1 = InlineKeyboardMarkup([
[
InlineKeyboardButton(
"Youtube", url="http://youtube.com/"),
InlineKeyboardButton(
"Facebook", url="https://www.facebook.com/")
], [
InlineKeyboardButton("A", callback_data="a"),
InlineKeyboardButton("B", callback_data="b")
]
])
# 訊息回復方式
def echo(update: Update, context: CallbackContext):
# 加入 InlineKeyboard
update.message.reply_text(
text=update.message.text, reply_markup=keyboard_1)
# 指令回復方式
def start(update: Update, context: CallbackContext):
context.bot.send_message(
chat_id=update.message.chat.id, text="Hello")
def get_id(update: Update, context: CallbackContext):
context.bot.send_message(
chat_id=update.message.chat.id, text=update.message.from_user.id)
def show(update: Update, context: CallbackContext):
update.message.reply_text(
text="Show menu",
reply_markup=ReplyKeyboardMarkup([
["1", "2", "3"],
[KeyboardButton("4"), KeyboardButton("/start")]
], resize_keyboard=True, one_time_keyboard=True))
def hide(update: Update, context: CallbackContext):
update.message.reply_text(
text="Hide menu",
reply_markup=ReplyKeyboardRemove(True))
def callbackquery(update: Update, context: CallbackContext): # New
update.callback_query.message.reply_text(
text=update.callback_query.data)
# 註冊訊息回復方式
updater.dispatcher.add_handler(MessageHandler(
filters=(Filters.text), callback=message_handler))
# 註冊指令回復方式
updater.dispatcher.add_handler(
CommandHandler("start", callback=start))
updater.dispatcher.add_handler(
CommandHandler("get_id", callback=get_id))
updater.dispatcher.add_handler(
CommandHandler("show", callback=show))
updater.dispatcher.add_handler(
CommandHandler("hide", callback=hide))
updater.dispatcher.add_handler(
CallbackQueryHandler(callbackquery)) # New
# 開始長輪詢
if __name__ == "__main__":
updater.start_polling()
updater.idle()
updater.stop()
基本上操作幾乎相同,變得幾乎只有從哪邊可以取得傳入的值而已。
這時候按下 A
跟 B
的按鈕基本上也都有回復了,更進階的就交給各位操作啦,登入、遊戲及支付我目前還沒有玩過,就讓各位體驗了。
那麼就先到這邊,明天沒意外的話會讓我們的機器人進入群組,當更多人的工具人讓更多人體驗啦。
大家掰~掰~