Skip to content

Instantly share code, notes, and snippets.

View makarworld's full-sized avatar
🌺

abuztrade makarworld

🌺
View GitHub Profile
@makarworld
makarworld / test_webhook.py
Created January 14, 2025 00:30
Telegram bot on python (aiogram 3.x) with webhook via xtunnel
from aiogram import Bot, Dispatcher, types
from aiohttp import web
API_TOKEN = 'BOT_TOKEN'
# for run xtunnel https:
# xtunnel 3000
WEBHOOK_URL = 'https://xtunnel_link_here/webhook' # Замените на ваш URL
bot = Bot(token=API_TOKEN)
dp = Dispatcher()