英文:
Is it possible to forward whole chat/group posts using telegram bot?
问题
我正在使用 python-telegram-bot 库编写一个Python机器人,它将所有群组的帖子转发到另一个机器人是管理员的群组。
是否有方法可以访问群组/聊天的所有帖子?
类似这样的吗?
async def forward_messages(update: Update, context: ContextTypes.DEFAULT_TYPE):
chat = await context.bot.get_chat("<group-id>")
#get_messages??
英文:
I'm using the python-telegram-bot library to write a bot in Python that forwards all group posts to another group where the bot is administrator.
Is there any method that I could use to access all posts of a group/chat?
something like this?
async def forward_messages(update: Update, context: ContextTypes.DEFAULT_TYPE):
chat = await context.bot.get_chat("<group-id>")
#get_messages??
答案1
得分: 1
没有,没有。机器人可用的方法在Telegram的Bot API文档中列出。
英文:
No, there is not. The methods available for bots are listed in Telegrams Bot API documentation.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论