Finding a user by their username#discrim(通过用户名查找用户#discrim)
问题描述
是否有可能获取您知道他们的用户名和区别但与您不在共同服务器中的某人的用户 ID?
Is it possible to get someone's user ID who you know their username and discrim, but is not in a mutual server with you?
谢谢.
推荐答案
我不这么认为.这是有道理的,因为这很容易被滥用.如果机器人可以看到所有不和谐的用户,想象一下所有的垃圾邮件机器人.
I don't think so. It makes sense since this can easily be abused. Imagine all the spam bots if bots can see all discord users.
以下是使用 discord.py 获取用户信息的两种方法,但请注意,它们不能按您的要求使用.
Below are two ways to get user info using discord.py, but note that they cannot be used as you ask.
client.get_user_info 可用于获取用户信息,即使您不共享服务器,但它以唯一 ID 作为参数.
client.get_user_info can be used to get user info even if you don't share a server, but it takes the unique ID as an argument.
server.get_member_named 返回唯一的用户 ID,并将用户名和可选的鉴别符作为输入,但要求您与用户共享服务器/公会才能工作.
server.get_member_named returns the unique user ID and takes username plus the optional discriminator as input, but requires that you share server/guild with the user to work.
这篇关于通过用户名查找用户#discrim的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过用户名查找用户#discrim
基础教程推荐
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 包装空间模型 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
