如何在discord.py中获取频道的最新消息?

编程入门 行业动态 更新时间:2024-10-21 13:26:24
本文介绍了如何在discord.py中获取频道的最新消息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

是否可以使用discord.py获取特定频道的最新消息?我查看了官方文档,却找不到方法.

Is there a way to get the most recent message of a specific channel using discord.py? I looked at the official docs and didn't find a way to.

推荐答案

我现在已经自己弄清楚了:

I've now figured it out by myself:

对于 discord.Client 类,您只需要为最后一条消息使用以下代码行:

For a discord.Client class you just need these lines of code for the last message:

msg = await self.get_channel(CHANNEL_ID).history(limit=1).flatten() msg = msg[0]

如果您使用 discord.extmands.Bot ,@ thegamecracks的答案是正确的.

If you use a discord.extmands.Bot @thegamecracks' answer is correct.

更多推荐

如何在discord.py中获取频道的最新消息?

本文发布于:2023-10-24 14:33:43,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1524190.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:最新消息   如何在   频道   py   discord

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!