dimajolkin/symfony-firebase-notifier
最新稳定版本:v0.0.2
Composer 安装命令:
composer require dimajolkin/symfony-firebase-notifier
包简介
README 文档
README
Install
composer required dimajolkin/symfony-firebase-notifier
Docs
Provides Firebase integration for Symfony Notifier.
Adapted for using http
Base copy from : https://github.com/symfony/firebase-notifier
include __DIR__ .'/../vendor/autoload.php'; use Dimajolkin\SymfonyFirebaseNotifier\Credential; use Dimajolkin\SymfonyFirebaseNotifier\FirebaseTransport; use Dimajolkin\SymfonyFirebaseNotifier\MessageType\TargetMessageOptions; use Dimajolkin\SymfonyFirebaseNotifier\Notification\AndroidNotification; use Dimajolkin\SymfonyFirebaseNotifier\Notification\CommonNotification; use Symfony\Component\Notifier\Chatter; use Symfony\Component\Notifier\Exception\TransportException; use Symfony\Component\Notifier\Message\ChatMessage; $file = file_get_contents('......json'); $token = Credential::fromServiceAccountContent($file)->getToken(); $chatter = new Chatter(new FirebaseTransport($token)); $chatMessage = new ChatMessage('super text'); $options = new TargetMessageOptions( token: '....', common: new CommonNotification( title: 'incident title', body: 'test message', ), android: new AndroidNotification( clickAction: 'open_incident_view', ), data: [ 'id' => '54841', 'type' => 'incident', 'title' => 'incident title', 'message' => 'incident message', ], ); // Add the custom options to the chat message and send the message $chatMessage->options($options); try { $chatter->send($chatMessage); } catch (TransportException $exception) { echo $exception->getMessage(); }
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2024-06-23