How do I get the User ID of a discord user using discord.py(如何使用 discord.py 获取不和谐用户的用户 ID)
问题描述
我正在使用 Discord.py,并且我试图在用户输入频道时获取用户的 Discord 用户 ID.
Im using Discord.py and Im trying to get the Discord userid of a user when they type into a channel.
进入开发者模式可以找到userid,在用户名上右击,会有一个选项copy id".
The userid can be found when you go into developer mode, and right click on a username, there will be an option "copy id".
当前的 api 没有说明如何做到这一点,或者我一直错过它
The current api is not saying how to do this, or I keep missing it
推荐答案
文档说 User 类有用户的 id:
http://discordpy.readthedocs.io/en/latest/api.html#user
The documentation says that the User class have the user's id:
http://discordpy.readthedocs.io/en/latest/api.html#user
而 Member 是 User 的子类:
http://discordpy.readthedocs.io/en/latest/api.html#member
因此,如果您收到来自用户的消息,则可以使用 message.author.id
So if you got a message from a user, you can get the id with message.author.id
import discord
import asyncio
client = discord.Client()
@client.event
async def on_ready():
print('Logged in as')
print(client.user.name)
print(client.user.id)
print('------')
@client.event
async def on_message(message):
print(message.author.id)
client.run('token')
这篇关于如何使用 discord.py 获取不和谐用户的用户 ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 discord.py 获取不和谐用户的用户 ID
基础教程推荐
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
