Python-Telegram-bot 库 - getUpdates returns 空

Python-Telegram-bot library - getUpdates returns empty

所以基本上我是按照 https://pypi.python.org/pypi/python-telegram-bot 的说明操作的,但是当我到达

>>> updates = bot.getUpdates()
>>> print [u.message.photo for u in updates if u.message.photo]

但是,我的更新总是 [] 或一个空列表。无论我使用电报向它发送多少条短信。

我是不是做错了什么?

奖金

我将它设置为回显,但现在即使我尝试使用

bot.removeTelegramMessageHandler(echo)

命令已发送,但仍有回显。我是不是做错了什么?

谢谢! :D

改为选中此 example, it's very straightforward. If you are using handler classes you don't have to do bot.getUpdates() manually. But if you want a pure implementation of the library without extension classes, check this example

希望对您有所帮助!