是否有一种方法可以使用discord.py获取特定频道的最新消息?我查看了官方文档,却找不到方法。
答案 0 :(得分:0)
(答案使用discord.ext.commands.Bot
而不是discord.Client
;我尚未使用API的较低级部分,因此可能不适用于discord.Client
)
在这种情况下,您可以使用Bot.get_channel(ID)
获取要检查的频道。
channel = self.bot.get_channel(int(ID))
然后,您可以使用channel.last_message_id
获取最后一条消息的ID,并使用channel.fetch_message(ID)
获取消息。
message = await channel.fetch_message(
channel.last_message_id)
结合起来,用于获取频道的最后一条消息的命令可能看起来像这样:
@commands.command(
name='getlastmessage')
async def client_getlastmessage(self, ctx, ID):
"""Get the last message of a text channel."""
channel = self.bot.get_channel(int(ID))
if channel is None:
await ctx.send('Could not find that channel.')
return
# NOTE: get_channel can return a TextChannel, VoiceChannel,
# or CategoryChannel. You may want to add a check to make sure
# the ID is for text channels only
message = await channel.fetch_message(
channel.last_message_id)
# NOTE: channel.last_message_id could return None; needs a check
await ctx.send(
f'Last message in {channel.name} sent by {message.author.name}:\n'
+ message.content
)
# NOTE: message may need to be trimmed to fit within 2000 chars
答案 1 :(得分:0)
我现在已经自己弄清楚了:
对于discord.Client
类,您只需要为最后一条消息使用以下代码行:
msg = await self.get_channel(CHANNEL_ID).history(limit=1).flatten()
msg = msg[0]
如果您使用discord.ext.commands.Bot
@thegamecracks的答案是正确的。