我想从他们的ID中获得用户的昵称。我有以下代码:
id = 235088799074484224 # User Id
member2 = bot.guilds[guild_id].get_member(id)
print(member2.nick)
但是代码给出了错误:
Traceback (most recent call last):
File "C:\Users\Vlad\PycharmProjects\untitled\venv\lib\site-packages\discord\client.py", line 333, in _run_event
await coro(*args, **kwargs)
File "C:/Users/Vlad/PycharmProjects/untitled/static/bot.py", line 61, in on_message
messages = await clean_up_messages(messages)
File "C:/Users/Vlad/PycharmProjects/untitled/static/bot.py", line 21, in clean_up_messages
nick = await replace_nick(i.author.id)
File "C:/Users/Vlad/PycharmProjects/untitled/static/bot.py", line 15, in replace_nick
return member2.display_name # or .nick
AttributeError: 'NoneType' object has no attribute 'display_name'
错误似乎是由于member2
始终为None
造成的。无论我使用什么ID,它都是None
。
我已经阅读了文档,并且bot.guilds[guild_id]
是正确的,但是get_member()
函数似乎导致了错误。
我该如何解决?
答案 0 :(得分:2)
在新版本的discord.py(1.5.x)中,对Intents
进行了一些更新。意图就像许可,您必须对其进行定义以获取频道,成员(如guild.get_member()
)和一些事件等。必须在定义client = discord.Bot(prefix='')
之前对其进行定义。
import discord
intents = discord.Intents().all()
client = discord.Bot(prefix='', intents=intents)
如果要获取有关Intent的更多信息,可以查看API References。