为了账号安全,请及时绑定邮箱和手机立即绑定

DiscordjsError:请求使用令牌,但客户端无法使用令牌

DiscordjsError:请求使用令牌,但客户端无法使用令牌

aluckdog 2023-09-07 16:36:36
您好,我正在为我的服务器创建一个机器人,我试图在语音通道中创建一个成员计数器,当我完成它时,我在终端中写道:他开始说令牌node index.js对我的客户端不可用。错误:(node:9596) UnhandledPromiseRejectionWarning: DiscordjsError: Requestto use token, but token was unavailable to the client. at RequestHandler.execute这是我的代码注意:我将所有机器人代码都放在一个文件中,只是为了能够在 .bat 文件中使用它。
查看完整描述

1 回答

?
翻过高山走不出你

TA贡献1875条经验 获得超3个赞

这是因为在您尝试获取的第 6 行,您尚未登录。您bot.login()稍后会调用(并且它是异步的)

const guild = bot.guilds.fetch('222078108977594368')

如果您只想获取一次,您可以将其移至ready状态处理程序:

const Discord = require('discord.js')

const { send, stdout } = require('process')


const bot = new Discord.Client()

const token = 'XXX'

const prefix = 'a!'

// use let, so you can change it later in bot.on('ready')

let guild = null


// this event will only trigger after logging in

bot.on('ready', () => {

  const ping = new Date()

  // fetch here

  guild = bot.guilds.fetch('222078108977594368')


  ping.setHours(ping.getHours() - 3)

  console.log(`BOT INICIADO AS ${ping.getUTCHours()}:${ping.getUTCMinutes()}:${ping.getUTCSeconds()}`)

  console.log('GuruGuru Está Online!')


  bot.user.setActivity(`${bot.guilds.cache.size} servidores`, { type: 'WATCHING' });

})


查看完整回答
反对 回复 2023-09-07
  • 1 回答
  • 0 关注
  • 110 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信