Discord.js令牌登录问题

时间:2020-05-15 13:30:43

标签: javascript node.js token bots discord.js

嗨,即使我重新生成令牌,我的机器人也不会上线。我试图放一个捕获块,但没有任何变化。我的计算机是问题吗?脚本?还是我的节点版本(最后一个LTS)?我希望你有时间回答我!

这是错误:

    (node:1976) UnhandledPromiseRejectionWarning: Error: Incorrect login details were provided.
    at WebSocketConnection.<anonymous> (C:\Users\Atelier34bc\Documents\mpbot\node_modules\discord.js\src\client\ClientManager.js:48:41)
    at Object.onceWrapper (events.js:417:26)
    at WebSocketConnection.emit (events.js:310:20)
    at WebSocketConnection.onClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:390:10)
    at WebSocket.onClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\ws\lib\event-target.js:124:16)
    at WebSocket.emit (events.js:310:20)
    at WebSocket.emitClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\ws\lib\websocket.js:191:10)
    at TLSSocket.socketOnClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\ws\lib\websocket.js:850:15)
    at TLSSocket.emit (events.js:322:22)
    at net.js:672:12
(node:1976) 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: 2)
(node:1976) [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.

这是我的脚本:

const bot = new Discord.Client()
const PREFIX = "$"
const token = 'my_token'
bot.on('ready', () => {
    console.log('bot is online')
})

bot.on('message', message => {

    let args = message.content.substring(PREFIX.length).split(" ");
    switch (args[0]) {

        case 'mpall':
            if (message.author.id == 655346300958670848) {
                const embeds = new Discord.RichEmbed()
                    .setColor('#FF0000')
                    .setTitle('Message :')
                    .setDescription(args.slice(1).join(" "))
                message.guild.members.forEach(member =>
                    member.sendEmbed(embeds))
                break;               
            } else {
                var embeds1 = new Discord.RichEmbed()
                    .setColor('#FF0000')
                    .setTitle('Acess Denied')
                message.channel.send(embeds1)
            }

            break;
    }
})

bot.login(令牌);

1 个答案:

答案 0 :(得分:1)

我用自己的机器人尝试了该代码,并且运行良好,您是否检查过使用的是机器人令牌而不是客户端ID?