前提・実現したいこと
Python3.7、Windows10で、Discordのチャンネル内のメンバー一覧を取得するプログラムを組んでいるのですが、1行しか(Bot本人)取得できません…。
かなり時間をかけているのですが、特に解決策が見つかりません。
よろしくお願いします。
該当のソースコード
import discord from discord.ext import commands intents = discord.Intents.default() intents = discord.Intents.all() client = discord.Client(intents=intents) bot = commands.Bot(command_prefix='/') TOKEN = 'hogehoge' # メンバー取得 @bot.command() async def getMem(ctx): print(ctx.gulid.members) await ctx.channel.send('取得しました') bot.run(TOKEN)
試したこと
補足情報(FW/ツールのバージョンなど)
Python3.7
Windows10
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/25 09:17