我正在使用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)
由于我的Internet连接,呼叫使用不同的路径,并且超时很高,部署后我将对其进行更改。 错误消息:
telegram.error.NetworkError: urllib3 HTTPError ('Connection aborted', ConnectionAbortedError(10053, 'An estabilished connection was aborted by the software in your host machine', None, 10053, None)
答案 0 :(得分:1)
似乎防病毒软件或防火墙可能阻止了您的请求。尝试暂时禁用它们或添加一个例外。