Obtaining username from user id | discord.py(从用户 id 获取用户名 |不和谐.py)
问题描述
好吧,我一直在使用不和谐的数据库来获取队列中用户 id 的主要列表,尽管我在从用户 id 获取用户时遇到问题,因为它没有返回
Well I have been working with databases for a while with discord in order to obtain major lists of user id's in a queue, although I am having problem's obtaining the user from user id as it returns none
举例
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)
这是输出
client.wait_for_message似乎也没有检测到代码中的消息作者,有什么解决办法吗?
The client.wait_for_message doesnt seem to detect the message author in the code as well, any solutions?
推荐答案
方法 client.get_user_info 自上次迁移后已弃用,您应该改用 Client.fetch_user()
The method client.get_user_info is deprecated since the last Migration, you should use Client.fetch_user() instead
有关详细信息,请参阅此链接:https://discordpy.readthedocs.io/zh/latest/migrating.html
See this link for the details : https://discordpy.readthedocs.io/en/latest/migrating.html
这篇关于从用户 id 获取用户名 |不和谐.py的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从用户 id 获取用户名 |不和谐.py
基础教程推荐
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
