所以当我尝试运行它时,它说 (节点:30096)UnhandledPromiseRejectionWarning:错误[TOKEN_INVALID]:提供了无效的令牌。
这是代码
const bot = new Discord.Client();
const token = 'the token but i won't show';
bot.on('ready', () =>{
console.log('This bot is online!');
})
bot.login('token');```
答案 0 :(得分:2)
bot.login('token');
并没有您认为的那样。由于您已经将单词token
括在引号(''
中),因此您已经将 literal 字符串token
作为参数传递给{{1} }方法。
删除引号,以便传递变量login()
的内容,而不是:
token
坦率地说,您还应该考虑重新学习基本的JavaScript语法。