webdevbr / php-ionic-push-notification
该包最新版本(dev-master)没有提供许可证信息。
PHP 推送通知组件
dev-master
2016-05-28 17:17 UTC
Requires
- guzzlehttp/guzzle: ~6.0
This package is auto-updated.
Last update: 2024-09-07 15:38:24 UTC
README
安装
要安装此包,请运行
composer require webdevbr/php-ionic-push-notification:dev-master
或者将此行添加到 composer.json
中的 require
"webdevbr/php-ionic-push-notification": "dev-master"
示例
$serverApiKey = 'serverApiKey';
$client = new WebDevBr\Android\Clients\Guzzle;
$push = new WebDevBr\Android\PushNotifications($serverApiKey, $client);
$to = 'registration_id'; // replate "registration_id" to code of the Android app
$subject = 'Title';
$message = 'Full message';
$data = $push->send($to, $subject, $message);
var_dump($data);
文章
查看 www.webdevbr.com.br/push-notification-no-android-enviando-notificacoes-do-seu-servidor。