NodeJS 如何修复CLIENT_MISSING_INTENTS错误?

tvz2xvvm  于 2022-11-29  发布在  Node.js
关注(0)|答案(5)|浏览(156)

我开始学习discord.js,但现在我面临着这个问题。我尝试了一些谷歌搜索,但我不能设法解决它。

const Discord = require('discord.js');
// const Discord = require('discord.js');

// Using Intents class
const client = new Discord.Client();

client.on('message', (msg) => {
  // Send back a reply when the specific command has been written by a user.
  if (msg.content === '!hello') {
    msg.reply('Hello, World!');
  }
});

client.login('my_token');

这是我得到的错误:

egmofgnx

egmofgnx1#

您需要使用gateway intents指定您希望机器人接收的事件。
代替
const client = new Discord.Client();
用途
const client = new Discord.Client({ intents: [Enter intents here] })
比如说
const client = new Discord.Client({ intents: ["GUILDS", "GUILD_MESSAGES"] })
下面是另一个有用的页面:Gateways

  • 意向帮助您控制bot接收哪些事件。有关详细信息,请参阅特权意向。
  • 您需要node.js 16.6或更高版本才能在shell中使用discord.js13. npm install node@16
  • 事件列表位于客户端的“事件”选项卡下。
5vf7fwbs

5vf7fwbs2#

您可以通过在shell中键入以下代码来降低discord.js的版本:

npm i discord.js@12.5.3

最新的discord.js版本运行不太好,所以我使用v12。它不是一个复杂的脚本。

ss2ws0br

ss2ws0br3#

client = new Discord.Client({intents: 32767})
dfddblmv

dfddblmv4#

添加意向。

const { Client, Intents } = require('discord.js');
// Create a new client instance
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });

您也可以使用discord.js文档中提供的模板。文档

ha5z0ras

ha5z0ras5#

您需要将您的Node.js更新到版本16。只需在Google搜索中搜索Node.js,进入他们的官方网站,从那里下载安装程序,然后安装它!

相关问题