web-dev-qa-db-ja.com

RichEmbedにハイパーリンクを埋め込む方法はありますか?

[this](https://stackoverflow.com/)のようなリンクを作成しようとしていますが、可能であれば答えが見つからないようです。

私はすでにマークダウン構文を試しましたが(上記のように)、他の答えが見つからないようです。

これは私が現在使用しているコードです:

message.author.send({
  embed: new Discord.RichEmbed()
    .setTitle("DiscordBot Help")
    .setColor("#42b6f4")
    .addField("help cosmetic - Cosmetic help.", "All cosmetic commands")
    .addField("help economy - Economy help.", "All economy commands")
    .addField("facts - Gives you facts", "Subcommands required")
    .addField("credits - Shows the developers", "All hail the Creators!")
    .addField("info - Fun info about EngineBot", "10 fun facts.. or what?")
    .addField("patch - Shows current patch/updates.", "UPDATES ARE AWESOME!")
    // This is the line I'm having trouble with.
    .addField("Add DiscordBot to your server! [Click here](https://discordapp.com/oauth2/authorize?client_id=439778986050977792&scope=bot&permissions=8)", "Its mine now.")
    // Here the line ends.
    .addField("Enter prefix before the commands", "It wont work else ;)")
    .addField("MIT License | Copyright © 2018, Technotype", "All rights reserved.")
    .addField("More content coming soon!", "It'll just take time")
});

コードからの出力は次のようになると思いました。

Add DiscordBot to your server! [Click here](https://discordapp.com/oauth2/authorize?client_id=439778986050977792&scope=bot&permissions=8)

しかし、代わりに私は出力を得ました:

Add DiscordBot to your server! \[Click here\]\(https://discordapp.com/oauth2/authorize?client_id=439778986050977792&scope=bot&permissions=8\)
3
Technotype

フィールド名にリンクを含めることはできませんが、フィールド値に含めることはできます。
したがって、次のようなものが機能します。

.addField("Its mine now", "Add DiscordBot to your server! [Click here](https://discordapp.com/oauth2/authorize?client_id=439778986050977792&scope=bot&permissions=8)")
6
Ghanima