缺少斜线命令的访问权限

时间:2021-01-02 13:50:43

标签: node.js discord discord.js

错误信息如下:

PS C:\Users\User\Documents\Discord Bot> node .
ready
C:\Users\User\Documents\Discord Bot\node_modules\discord.js\src\rest\RequestHandler.js:154
      throw new DiscordAPIError(request.path, data, request.method, res.status);
            ^

DiscordAPIError: Missing Access
    at RequestHandler.execute (C:\Users\User\Documents\Discord Bot\node_modules\discord.js\src\rest\RequestHandler.js:154:13)
    at processTicksAndRejections (node:internal/process/task_queues:93:5)
    at async RequestHandler.push (C:\Users\User\Documents\Discord Bot\node_modules\discord.js\src\rest\RequestHandler.js:39:14) {
  method: 'post',
  path: '/applications/723863781607997451/guilds/722043668730740788/commands',
  code: 50001,
  httpStatus: 403
}

感谢帮助。 这是我在 stackoverflow 上的第一篇文章,所以如果我发布的内容有误,请告诉我!

1 个答案:

答案 0 :(得分:4)

您的应用程序需要访问 application.commandsapplication.commands.update

您可以通过点击 here 进入您的开发者页面来完成所有这些操作。 然后,您可以在 OAuth2 页面上选择以下内容: picture of scopes and bot permissions on discord developer page

如果没有帮助,您还可以阅读Discord documentation for Slash Commands