我有一个机器人,在某些时候它会关闭并出现错误 TelegramBadRequest:Telegram 服务器说 - 已注销。大约 20 分钟后,它再次启动,大约 10 分钟后再次启动 TelegramBadRequest:Telegram 服务器说 - 已注销 这意味着什么?
我撤销了一个新的令牌,但问题没有解决
我导入
from aiogram.client.telegram import TelegramAPIServer
from aiogram.client.session.aiohttp import AiohttpSession
session
添加到我的机器人对象中,例如 bot = Bot(token=BOT_TOKEN, base_url=LOCAL_API_URL,session=session, default=DefaultBotProperties(parse_mode=ParseMode.HTML))
LOCAL_API_URL 是 http://localhost:8081/bot
我运行这个,它有效。
注意:您的本地服务器必须运行。你会知道的更多
一个小提示是如何运行本地服务器
./telegram-bot-api --api-id=<your_telegram_api_number>--api-hash=<your_telegram_api_hashcode> --local