如何在Telegram API中使用代理使用Python发送消息

时间:2018-08-30 14:54:13

标签: telegram python-telegram-bot

我想使用代理将消息发送到电报组。这是一个通过代理发送消息的简单代码:

import telegram
from telegram.ext import Updater, CommandHandler
Bot_Token="MY_TOKEN"
Grp_ID="GROUP_ID"
REQUEST_KWARGS={'proxy_url': 'http://IP:PORT', 'urllib3_proxy_kwargs': {"username": "U_NAME" , "password": "PASSWORD"}}
updater = Updater(Bot_Token, request_kwargs=REQUEST_KWARGS)
bot_=updater.bot
bot_.send_message(chat_id=Grp_ID,text="Hello")

但出现以下错误:

TypeError: __init__() got an unexpected keyword argument 'username'

我用google搜索并在github上找到了一些解决方案。但他们都没有解决我的问题。任何帮助表示赞赏。

0 个答案:

没有答案