discord.py 按内容获取消息
Posted
技术标签:
【中文标题】discord.py 按内容获取消息【英文标题】:discord.py Fetching messages by content 【发布时间】:2021-01-28 00:19:56 【问题描述】:我正在尝试为反应角色构建一个不和谐机器人。为此,我尝试将 on_reaction_add 与 fetch_message 结合使用来检查添加的反应是否是机器人发送的消息,但我不断收到 fetch_message 的各种错误。代码如下:
@bot.command()
async def createteams(ctx):
msg = await ctx.send("React to get into your teams")
await msg.add_reaction("1️⃣")
await msg.add_reaction("2️⃣")
await msg.add_reaction("3️⃣")
await msg.add_reaction("4️⃣")
await msg.add_reaction("5️⃣")
await msg.add_reaction("6️⃣")
await msg.add_reaction("7️⃣")
await msg.add_reaction("8️⃣")
@bot.event
async def on_reaction_add(reaction, user):
id = reaction.message.id
if await reaction.message.author.fetch_message(reaction.message.id) == "React to get into your teams":
print("Success")
这给了我错误
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/discord/client.py", line 312, in _run_event
await coro(*args, **kwargs)
File "hypixel.py", line 60, in on_reaction_add
fetch = await reaction.message.author.fetch_message(id)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/discord/abc.py", line 955, in fetch_message
channel = await self._get_channel()
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/discord/member.py", line 243, in _get_channel
ch = await self.create_dm()
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/discord/member.py", line 109, in general
return getattr(self._user, x)(*args, **kwargs)
AttributeError: 'ClientUser' object has no attribute 'create_dm'
但是当我去复制我反应的消息的 ID 时,它与打印的变量 id
相同,但它仍然显示 Message Not Found
谢谢
【问题讨论】:
您确定您已粘贴所有代码吗?您似乎正在尝试调用代码中某处不存在的create_dm
函数。
这是所有相关的代码,但如果有帮助的话,我会把整个事情都写出来
它根据错误信息从on_Reaction_add调用create_dm
你能粘贴完整的堆栈跟踪吗?
我粘贴了所有代码
【参考方案1】:
我发现了问题,您不能将 fetch_message 与用户一起使用,它需要是频道,所以我将代码更改为
await reaction.message.channel.fetch_message(id)
它奏效了:)
【讨论】:
以上是关于discord.py 按内容获取消息的主要内容,如果未能解决你的问题,请参考以下文章
如何获取对 discord.py 中的消息做出反应的成员列表?