gpt4 book ai didi

discord-jda - 如何在 JDA channel 中使用斜杠命令?

转载 作者:行者123 更新时间:2023-12-04 07:24:28 29 4
gpt4 key购买 nike

public class HelloWorldBot extends ListenerAdapter
{
public static void main(String[] args) throws LoginException
{
if (args.length < 1) {
System.out.println("You have to provide a token as first argument!");
System.exit(1);
}
// args[0] should be the token
// We don't need any intents for this bot. Slash commands work without any intents!
JDA jda = JDABuilder.createLight(args[0], Collections.emptyList())
.addEventListeners(new HelloWorldBot())
.setActivity(Activity.playing("Type /ping"))
.build();

jda.upsertCommand("ping", "Calculate ping of the bot").queue(); // This can take up to 1 hour to show up in the client
}

@Override
public void onSlashCommand(SlashCommandEvent event)
{
if (!event.getName().equals("ping")) return; // make sure we handle the right command
long time = System.currentTimeMillis();
event.reply("Pong!").setEphemeral(true) // reply or acknowledge
.flatMap(v ->
event.getHook().editOriginalFormat("Pong: %d ms", System.currentTimeMillis() - time) // then edit original
).queue(); // Queue both reply and edit
}
}
使用上面的代码,我可以使用 DM 机器人的斜线命令。但是,如何在 channel 中使用斜杠命令?
它在不和谐的开发者文档中说:

In order to make Slash Commands work within a guild, the guild mustauthorize your application with the applications.commands scope. Thebot scope is not enough.


究竟如何使用 JDA 做到这一点?

最佳答案

要生成这样的授权 URL,请执行以下步骤:

  • 打开您的application dashboard
  • 打开标签 OAuth2 在您选择您的应用程序后
  • 生成范围为 bot 的授权 URL和 applications.commands勾选
  • 复制该 URL 并在新选项卡中打开它
  • 使用该链接邀请您的机器人加入公会

  • 请注意,正如这里的评论正确指出的那样,全局命令最多需要 1 小时才能传播。如果你想测试你的机器人,你可以使用立即显示的公会命令。
    要创建公会命令,请使用 jda.getGuildById(guildId)获取公会,然后使用相同的方法在该 Guild 上创建命令实例而不是 JDA实例。请注意,获得公会需要 JDA 准备就绪,因此请务必调用 awaitReady()首先在您构建 JDA 实例之后。

    关于discord-jda - 如何在 JDA channel 中使用斜杠命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68292025/

    29 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com