2

我是电报机器人的新手。我有一个简单的问题,我遵循了电报机器人文档,这是我的代码:

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()

现在当我去执行我的脚本时。

如果我键入 /caps hi,它会按预期返回 HI。

但我想当我输入 / 时,它会给我弹出 /cap 之类的选项。但它没有

任何帮助将不胜感激。

4

1 回答 1

4

我相信目前没有 API 来注册 /-command 自动完成,你必须手动列出你计划用 BotFather 实现的所有命令,通过/setcommands.

至少文件表明是这样。

于 2017-05-06T14:16:03.810 回答