discord webhooks
1.0.0
discord webhooks adalah klien sederhana untuk API webhook Discord.
Meskipun ini mungkin merupakan perpustakaan "satu lagi" untuk sistem webhook Discord, saya ingin membuatnya sendiri. Discord tidak mendukung sistem webhook BitBucket dan titik akhir yang kompatibel dengan Slack tidak mengirimkan pesan.
Anda dapat menyalin file PHP langsung ke proyek Anda atau lebih baik gunakan saja composer.
composer require nopjmp/discord-webhooks
Ini cukup mudah digunakan. Saya akan memberikan contoh.
use DiscordWebhooks Client ;
use DiscordWebhooks Embed ;
$ webhook = new Client ( ' DISCORD_WEBHOOK_URL ' );
$ embed = new Embed ();
$ embed -> description ( ' This is an embed ' );
$ webhook -> username ( ' Bot ' )-> message ( ' Hello, Human! ' )-> embed ( $ embed )-> send ();
Contoh pengiriman file:
$webhook->addFile("/path/to/file")
->addStringFile("Hello World!", "hello_world.txt")
->send();
Proyek ini berlisensi MIT. Untuk membaca lisensi lengkap, buka LICENSE.md.
Permintaan tarik dan masalah terbuka!