Решил попробовать написать свой бот для телеграм:
import telebot
bot = telebot.TeleBot('МойТокен')
@bot.message_handler(commands=['start'])
def start_message(message):
bot.send_message(message.chat.id, 'Привет, ты написал мне /start')
bot.polling(none_stop=True)
Запускаю — ошибка:
Ошибкаrequests.exceptions.ConnectTimeout: HTTPSConnectionPool(host='api.telegram.org', port=443): Max retries exceeded with url: /botМойТокен/getUpdates?offset=1&timeout=20 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x040C7838>, 'Connection to api.telegram.org timed out. (connect timeout=3.5)'))
Окей, скачал Windscribe, включил VPN, но ошибка осталась:
Ошибка 2requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='api.telegram.org', port=443): Read timed out. (read timeout=3.5)