发送音视频电报机器人时出现网络错误
Network error when sending audio and video telegram bot
我正在使用 python-telegram-bot 库制作一个机器人。
我发送的每条短信都可以正常工作,但我也必须发送视频和音频,但这是行不通的。
我这样发送它们:
bot.send_audio(chat_id=update.message.chat_id, audio=open(path, 'rb'), timeout=3600)
bot.send_video(chat_id=update.message.chat_id, video=open(path, 'rb'), timeout=3600)
调用使用不同的路径,由于我的互联网连接超时时间很长,部署后我会更改它。
错误信息:
telegram.error.NetworkError: urllib3 HTTPError ('Connection aborted', ConnectionAbortedError(10053, 'An estabilished connection was aborted by the software in your host machine', None, 10053, None)
防病毒软件或防火墙似乎阻止了您的请求。尝试暂时禁用它们或添加例外。
我正在使用 python-telegram-bot 库制作一个机器人。 我发送的每条短信都可以正常工作,但我也必须发送视频和音频,但这是行不通的。 我这样发送它们:
bot.send_audio(chat_id=update.message.chat_id, audio=open(path, 'rb'), timeout=3600)
bot.send_video(chat_id=update.message.chat_id, video=open(path, 'rb'), timeout=3600)
调用使用不同的路径,由于我的互联网连接超时时间很长,部署后我会更改它。 错误信息:
telegram.error.NetworkError: urllib3 HTTPError ('Connection aborted', ConnectionAbortedError(10053, 'An estabilished connection was aborted by the software in your host machine', None, 10053, None)
防病毒软件或防火墙似乎阻止了您的请求。尝试暂时禁用它们或添加例外。