discord webhooks
1.0.0
discord webhooks是 Discord webhook API 的简单客户端。
虽然这可能是 Discord 的 webhook 系统的“又一个”库,但我想创建自己的库。 Discord 不支持 BitBucket 的 webhook 系统,并且 Slack 兼容端点不发送消息。
您可以将 PHP 文件直接复制到您的项目中,或者最好只使用 Composer。
composer require nopjmp/discord-webhooks
它相当容易使用。我举一个例子。
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 ();
发送文件示例:
$webhook->addFile("/path/to/file")
->addStringFile("Hello World!", "hello_world.txt")
->send();
该项目已获得麻省理工学院许可。要阅读完整许可证,请打开 LICENSE.md。
拉取请求和问题已开放!