discord.py 错误缺少 1 个必需的仅关键字参数:'intents'

问题描述 投票:0回答:0

我试图为不和谐制作一个快速机器人,我使用了这段代码:

import discord
from discord.ext import commands

bot = commands.Bot(command_prefix='0')

@bot.command(name='ping')
async def ping(ctx):
    await ctx.send('Pong!')

bot.run('MY_DISCORD_BOT_TOKEN')

我得到这个错误:

BotBase.__init__() missing 1 required keyword-only argument: 'intents'

我不确定它缺少什么参数,因为我遇到过这样的错误

python pycharm discord.py
© www.soinside.com 2019 - 2024. All rights reserved.