从用户ID获取用户名|不和谐

时间:2018-12-07 15:46:29

标签: python discord discord.py

虽然我在从用户ID中获取用户时遇到问题,因为它不返回任何信息,但我一直在与数据库打交道已有一段时间了,以便获得队列中用户ID的主要列表。

例如


members = list(privateduos[matchid])
user = discord.User(id=int(members[0]))
await client.say("Say `test` " + str(user))
await client.wait_for_message(content="test", author=user)

这是输出

Output:

client.wait_for_message 似乎也没有在代码中检测到消息作者,有什么解决方法吗?

2 个答案:

答案 0 :(得分:3)

自上次迁移以来,不赞成使用client.get_user_info方法,而应改用Client.fetch_user()

有关详细信息,请参见此链接:https://discordpy.readthedocs.io/en/latest/migrating.html

答案 1 :(得分:1)

使用await client.get_user_info(members[0])

从那里开始,(假设您已将返回值分配给user),您可以执行user.name获取用户名。
(或按照here提取有关user的其他信息。)