问题标签 [py-telegram-bot-api]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python-3.6 - 在 python 3 中处理电报 webhook 数据
我使用这个框架pyTelegramBotAPI制作了聊天机器人,并将 webhook 设置为我在 Telegram 中的聊天机器人。我为此使用 CherryPy。一切正常。但我无法处理用户发送给我的机器人的数据。我只是收到用户发送内容的通知。我该如何解决这个问题?谢谢。
python - pyTelegramBotAPI 中带有参数的命令
pyTelegramBotAPI 版本 - 3.0.1
python版本:2.7/3.6.1
我想创建一个带参数的命令,例如:
怎么做?
python - pyTelegramBotAPI。如何在 next_step_handler 解决方案中保存状态?
我的解决方案中的用户通过在电报中输入消息逐步进行。问题是服务器重启后他的状态没有保存,他需要重新开始。
例如,如果用户在“process_mid”步骤,重新启动后,他无法进入“process_end”。用户只能通过键入“开始”命令开始新阶段。
python-3.x - pyTelegramBotAPI func 过滤器和命令过滤器 message_handler
我的意图是使用 pyTelegramBotAPI 开发一个机器人,其中内部状态“状态”允许或禁止访问某些命令。
仅当命令为“计划”且“状态”为 0 时,片段中的预期输出才是消息
我的代码:
这个片段的结果是没有出路。而且我无法识别问题是否源于过滤器使用不当、变量范围或 lambda 函数的滥用。
感谢您的帮助,这是我在堆栈溢出中的第一个问题。
问候
python - 在 PyTelegramBotAPI 上运行的 Telegram Bot 错误地获取转发消息
我正在将消息转发给机器人。然后 bot simple 将其打印到我的控制台(第一次)。然后,让我们看一下示例:
转发: 1 2 3 4 5
机器人输出: 2 1 4 3 5
主要问题是这些消息的层次结构是错误的。它总是不同的,它甚至可以是正确的,但很少......
问题: 如何正确获取具有正确层次结构的所有消息?
我使用的代码:
信息:Python 3、PyTelegramBotAPI
python - telegram bot: how should i get user feedback after forcereply?
after I use the methods and send a reply markup message, how should I get user's reply text (like user feedback)? which method should I use?
I now use pyTelegramBotAPI as a Python Wrapper.
python - getChatMembersCount 远程机器人
我的代码:
错误:
AttributeError:“TeleBot”对象没有属性“getChatMembersCount”
如何使用“getChatMembersCount”?
python-2.7 - Telegram api:在一条消息中发送文本和照片
我正在尝试编写一个电报机器人,它将 VK 组的墙帖发送到电报频道。我使用 pyTelegramBotAPI。
是否可以在一条消息中发送文本和照片?也许你可以告诉我另一个电报机器人库或其他魔法。
python - PyTelegramBotAPI error connection through Proxy
So, i use PyTelegramBotAPI to send messages to my channel with help of bot. Today i need to setup Proxy for my bot, i read docs https://github.com/eternnoir/pyTelegramBotAPI#proxy
Do like that:
And got exception:
I try to read what is wrong and found such code:
Main problem in line
I use PyCharm, with installed
PySocks 1.6.8 and Requests 2.18.4
How to connect through Proxy to telegram with my proxy? Also that proxy good work on my phone and PC.
python - 如何在外面使用 Django ORM 而不会出现问题?
我将 Django ORM 用于使用 PyTelegramBotAPI lib 编写的电报机器人,我遇到了麻烦MySQL Server has gone away
,然后我增加了MAX_CONNECTION
和wait_timeout
,但它没有帮助,现在我没有错误,但机器人每隔几个小时就会掉下来。