Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Symfony Discord Notifier Bridge

License

NotificationsYou must be signed in to change notification settings

symfony/discord-notifier

ProvidesDiscord integration for Symfony Notifier.

DSN example

DISCORD_DSN=discord://TOKEN@default?webhook_id=ID

where:

  • TOKEN the secure token of the webhook (returned for Incoming Webhooks)
  • ID the id of the webhook

Adding Interactions to a Message

With a Discord message, you can use theDiscordOptions class to add someinteractive options called Embedelements.

useSymfony\Component\Notifier\Bridge\Discord\DiscordOptions;useSymfony\Component\Notifier\Bridge\Discord\Embeds\DiscordEmbed;useSymfony\Component\Notifier\Bridge\Discord\Embeds\DiscordFieldEmbedObject;useSymfony\Component\Notifier\Bridge\Discord\Embeds\DiscordFooterEmbedObject;useSymfony\Component\Notifier\Bridge\Discord\Embeds\DiscordMediaEmbedObject;useSymfony\Component\Notifier\Message\ChatMessage;$chatMessage =newChatMessage('');// Create Discord Embed$discordOptions = (newDiscordOptions())    ->username('connor bot')    ->addEmbed((newDiscordEmbed())        ->color(2021216)        ->title('New song added!')        ->thumbnail((newDiscordMediaEmbedObject())        ->url('https://i.scdn.co/image/ab67616d0000b2735eb27502aa5cb1b4c9db426b'))        ->addField((newDiscordFieldEmbedObject())            ->name('Track')            ->value('[Common Ground](https://open.spotify.com/track/36TYfGWUhIRlVjM8TxGUK6)')            ->inline(true)        )        ->addField((newDiscordFieldEmbedObject())            ->name('Artist')            ->value('Alasdair Fraser')            ->inline(true)        )        ->addField((newDiscordFieldEmbedObject())            ->name('Album')            ->value('Dawn Dance')            ->inline(true)        )        ->footer((newDiscordFooterEmbedObject())            ->text('Added ...')            ->iconUrl('https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/Spotify_logo_without_text.svg/200px-Spotify_logo_without_text.svg.png')        )    );// Add the custom options to the chat message and send the message$chatMessage->options($discordOptions);$chatter->send($chatMessage);

Resources


[8]ページ先頭

©2009-2025 Movatter.jp