我是电报机器人的新手。我有一个简单的问题,我按照电报机器人文档,这是我的代码:
from telegram.ext import Updater,CommandHandler,MessageHandler, Filters
import logging
updater = Updater(token='<Enter Token>')
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO)
dispatcher = updater.dispatcher
def start(bot, update):
bot.sendMessage(chat_id=update.message.chat_id, text="I'm a bot, please talk to me!")
def caps(bot, update, args):
text_caps = ' '.join(args).upper()
bot.sendMessage(chat_id=update.message.chat_id, text=text_caps)
start_handler = CommandHandler('start', start)
dispatcher.add_handler(start_handler)
caps_handler = CommandHandler('caps', caps, pass_args=True)
dispatcher.add_handler(caps_handler)
updater.start_polling()
现在我去执行我的剧本。
如果我输入/封顶喜欢,它会按预期返回HI。
但我想当我打字/它会在弹出窗口中给我选项/ cap。但它没有
任何帮助将不胜感激。
答案 0 :(得分:3)
我相信目前没有用于注册/命令自动完成的API,您必须通过/setcommands
手动列出您计划使用BotFather实现的所有命令。
至少documentation建议如此。