gpt4 book ai didi

discord - discord,.js 上的无效 token

转载 作者:行者123 更新时间:2023-12-05 00:45:21 29 4
gpt4 key购买 nike

我最近启动了一个新的 discord.js 机器人,但出现“无效 token ”错误。这不可能是因为 async 功能,因为我只启动了机器人并且我有 0 个命令,上次发生这种情况是当我试图在 heroku 上托管另一个机器人时。我从来没有找到了解决方案,这是我的终端:

C:\Users\Lory\Desktop\pp>node .
(node:3760) UnhandledPromiseRejectionWarning: Error [TOKEN_INVALID]: An invalid token was provided.
at WebSocketManager.connect (C:\Users\Lory\Desktop\pp\node_modules\discord.js\src\client\websocket\WebSocketManager.js:133:26)
at Client.login (C:\Users\Lory\Desktop\pp\node_modules\discord.js\src\client\Client.js:222:21)
(node:3760) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:3760) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

C:\Users\Lory\Desktop\pp>

我正在使用的代码:

const Discord = require('discord.js');
const client = new Discord.Client();

const prefix = '!'

client.on('ready', () => {
console.log('bot is ready');

});

client.login('token');

最佳答案

An invalid token was provided 错误是因为您在 .login() 中设置的 token 无效或被 Discord 撤销,原因有多种,例如垃圾邮件,恶意行为或不活动。还要确保您在 Discord Developer Portal 中创建了自己的机器人应用程序。 .要生成机器人 token ,请按以下步骤操作:

  1. 转至Discord Developer Portal
  2. 点击您创建的应用程序(如果您没有,请创建一个新应用程序)。
  3. 如果一切都设置好了,在左侧菜单的设置下,点击Bot

如果你看到这个: enter image description here

只需点击添加机器人

  1. 在此页面上,您可以设置头像、用户名和重新生成 token 。点击Regenerate,然后点击copy。将 token 粘贴到 client.login('Paste the Copy the token here').

  2. 运行你的脚本

  3. 享受吧!

关于discord - discord,.js 上的无效 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63863129/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com