Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何为使用python-telegram-bot编写的 Telegram Bot 设置 Heroku 之类的 webhook ?我必须在代码中添加什么?谢谢你。
您可以使用 set_webhook() 函数
bot.set_webhook('https://test.co/path')
笔记!设置 webhook 时 API 方法 getUpdates 不起作用。所以你可以使用
bot.delete_webhook()
释放它。