我正在制作一个针对不和谐机器人的计算机科学项目,并按照“ https://www.digitaltrends.com/gaming/how-to-make-a-discord-bot/”上的教程进行操作,无论谁在机器人上执行了两次步骤后仍然无法上网,我看不到任何问题;
{
“token”: “------------------------------- (correct token inserted)”
}
{
"name": "greeter-bot",
"version": "1.0.0",
"description": "My First Discord Bot",
"main": "bot.js",
"author": "Your Name",
"dependencies": {
"discord.io": "https://github.com/woor/discord.io/tarball/gateway_v6",
"winston": "^3.1.0"
}
}
使用网站中使用的漫游器代码
答案 0 :(得分:0)
我遇到了一些问题。复制和粘贴商标时,“双引号”出问题了。因此发生了无效的json文件。
这无效。
{
“token”: “------------------------------- (correct token inserted)”
}
这是有效的
{
"token": "your-token"
}