我想要的是使用 get_all_members()来收集服务器中所有用户的信息以供参考。目前,该漫游器仅收集自身的详细信息,而不是服务器中的每个人。 反正有解决办法吗?
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.event
async def on_ready():
for member in bot.get_all_members():
print(member.name)
print(member.id)
当前输出为:
AllSeeingEye
746569829267275866