如果您在使用 Discord.js 时遇到“CLIENT_MISSING_INTENTS”错误,那是因为您需要指定您希望机器人通过网关意图接收的事件。
将此行:
const client = new Discord.Client();
替换为:
const client = new Discord.Client({ intents: [Enter intents here] })
Discord.js v14:
const client = new Discord.Client({ intents: [ Discord.GatewayIntentBits.Guilds, Discord.GatewayIntentBits.GuildMessages ]})
Discord.js v13:
const client = new Discord.Client({ intents: ["GUILDS", "GUILD_MESSAGES"] })
通过指定适当的意图,您可以确保您的机器人可以处理您需要的事件和功能。
以上是为什么我在 Discord.js 中收到'CLIENT_MISSING_INTENTS”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!