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
基础教程推荐
- 尝试制作WhatsApp机器人 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
