• Проблема с polling в боте на питоне?

    @galtim11 Автор вопроса
    Ivan Yakushenko, c socks5 тоже не идет
    import telebot
    import time
    from telebot import apihelper
    
    apihelper.proxy = {'http':'http://192.169.215.124:3050'}
    
    TOKEN = '1190811079:AAEui3GQq1yJOk8pivrcjA8cVMIFBi1lI0A'
    bot = telebot.TeleBot(TOKEN)
    
    @bot.message_handler(commands=['start', 'help'])
    def send_welcome(message):
    	bot.reply_to(message, "Howdy, how are you doing?")
    @bot.message_handler(func=lambda m: True)
    def echo_all(message):
    	bot.reply_to(message, message.text)
    
    bot.polling()

    ошибка все та же:
    ERROR - TeleBot: "SSLError occurred, args=(MaxRetryError('HTTPSConnectionPool(host=\'api.telegram.org\', port=443): Max retries exceeded with url: /bot1190811079:AAEui3GQq1yJOk8pivrcjA8cVMIFBi1lI0A/getUpdates?offset=1&timeout=20 (Caused by SSLError(SSLError("bad handshake: Error([(\'SSL routines\', \'tls_process_server_certificate\', \'certificate verify failed\')],)",),))',),)
    Traceback (most recent call last):
  • Проблема с polling в боте на питоне?

    @galtim11 Автор вопроса
    вот код с прокси
    import telebot
    import time
    from telebot import apihelper
    
    apihelper.proxy = {'http':'http://198.50.177.44:44699'}
    
    TOKEN = '1190811079:AAEui3GQq1yJOk8pivrcjA8cVMIFBi1lI0A'
    bot = telebot.TeleBot(TOKEN)
    
    @bot.message_handler(commands=['start', 'help'])
    def send_welcome(message):
    	bot.reply_to(message, "Howdy, how are you doing?")
    @bot.message_handler(func=lambda m: True)
    def echo_all(message):
    	bot.reply_to(message, message.text)
    
    bot.polling()
  • Проблема с polling в боте на питоне?

    @galtim11 Автор вопроса
    вот код с прокси, тоже не работает
    import telebot
    import time
    from telebot import apihelper
    
    apihelper.proxy = {'http':'http://198.50.177.44:44699'}
    
    TOKEN = '1190811079:AAEui3GQq1yJOk8pivrcjA8cVMIFBi1lI0A'
    bot = telebot.TeleBot(TOKEN)
    
    @bot.message_handler(commands=['start', 'help'])
    def send_welcome(message):
    	bot.reply_to(message, "Howdy, how are you doing?")
    @bot.message_handler(func=lambda m: True)
    def echo_all(message):
    	bot.reply_to(message, message.text)
    
    bot.polling()