内容简介:Laravel Or Lumen GeTui基于
Laravel Or Lumen GeTui
基于 个推官方SDK for Laravel.
github: https://github.com/ShaoZeMing/laravel-getui
Installing
$ composer require shaozeming/laravel-getui -v
Laravel
// config/app.php 'providers' => [ //... ShaoZeMing\GeTui\GeTuiServiceProvider::class, //This is default in laravel 5.5 ],
And publish the config file:
$ php artisan vendor:publish --provider=ShaoZeMing\\GeTui\\GeTuiServiceProvider
if you want to use facade mode, you can register a facade name what you want to use, for example GeTui
:
// config/app.php 'aliases' => [ 'GeTui' => ShaoZeMing\GeTui\Facade\GeTui::class, //This is default in laravel 5.5 ],
lumen
- 在 bootstrap/app.php 中 82 行左右:
$app->register(ShaoZeMing\GeTui\GeTuiServiceProvider::class);
将 vendor/ShaoZeMing/laravel-getui/src/config/getui.php
拷贝到项目根目录 /config
目录下,并将文件名改成 getui.php
。
configuration
// config/getui.php // APP_EVN 你的项目当前环境 测试、生产 'app_env' => env('APP_ENV') == 'production' ? 'production' : 'development', // The default default_client name which configured in `development` or `production` section //默认推送的客户端 'default_client' => 'client_1', 'development' => [ 'client_1' => [ 'gt_appid' => 'WAqyXNcLpS8OLg4jBywS48', 'gt_appkey' => 'FkxUuibQsT75FX5Tt5jteA', 'gt_appsecret' => 'jWtd0iUzdmAvVPhKorrtW1', 'gt_mastersecret' => '4uCfJsfME99oaF5sT1ZjO', 'gt_domainurl' => 'http://sdk.open.api.igexin.com/apiex.htm', ], 'client_2' => [ 'gt_appid' => 'SeldZ6X0Iq8hpj5rGvqAk8', 'gt_appkey' => '93MPU2THwl9okpeNf4lNI4', 'gt_appsecret' => 'kzZuSXVMm29M7owpvId979', 'gt_mastersecret' => '0QCmCdVZSi8lcyMFXLB4e', 'gt_domainurl' => 'http://sdk.open.api.igexin.com/apiex.htm', ], // other client_3 ...... ], 'production' => [ 'client_1' => [ 'gt_appid' => '6V95sH0t3W6Du1MTiU3679', 'gt_appkey' => 'n6q8NSAshP77ImKxdhuHV6', 'gt_appsecret' => '01hGwR1Jdl6vuwBcnvfyD3', 'gt_mastersecret' => 'daw4hbkFj4Ah3kBlPFfIh2', 'gt_domainurl' => 'http://sdk.open.api.igexin.com/apiex.htm', ], 'client_2' => [ 'gt_appid' => 'iB7DfaXV6bAf8zlJ0L59A8', 'gt_appkey' => 'DKKp54s2knA2MaeGBXuF01', 'gt_appsecret' => 'exTKWC0M1K6O2Bgig5RiC8', 'gt_mastersecret' => '0cojzBC7yB86mhOiOVHBuA', 'gt_domainurl' => 'http://sdk.open.api.igexin.com/apiex.htm', ], // other client_3 ...... ],
Usage
Gateway instance:
use GeTui; //针对单个或者多个用户推送 GeTui::push($deviceId, $data,true) //Using default default_client 推送给默认的客户端 GeTui::toClient('CLIENT NAME')->push($deviceId, $data) // CLIENT NAME is key name of `development` or `production` configuration. //自定义发送的客户端 // 针对整个app所有人推送 GeTui::pushToApp($data,true) ////Using default default_client GeTui::toClient('CLIENT NAME')->pushToApp($data) // GATEWAY NAME is key name of `development` or `production` configuration.
Example:
$deviceId = 'b2e5b64931f06f617e363b74c8057cf6'; // 多个push对象device_id 用数组传入 $deviceId = [ 'ea34a4715b08b1b8d77aabf36c977cba', 'ea34a4715b08b1b8d77aabf36c977cba', ]; $data = [ 'url' => 'http://test.4d4k.com/push', 'type' => '点击查看\(^o^)/~', 'title' => '23232323fdf', 'content' => '今天天气真好', 'id' => '3a92y3GR1neZ', 'merchant_name' => '泽明科技', 'big_cat' => '电视机', 'full_address' => '北京市海淀区五道口清华大学', ]; $res = \GeTui::push($deviceId, $data,true); //Using default default_client print_r($res);
License
MIT
以上所述就是小编给大家介绍的《基于个推(GeTui)官方SDK集成 Laravel 5.* 、Lumen 推送服务包》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 在spring-boot项目里集成netty-socketio实现服务器给页面推送消息通知
- iOS 推送通知及推送扩展
- 安卓统一推送联盟明日开启推送通道测试
- 《Web 推送通知》系列翻译 | 第五篇:使用 Web 推送库发送消息 && 第六篇:Web 推送协议
- 推送系统从0到1(七):推送用户画像建立
- 推送系统从0到1(八):个性化精准推送的实现
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。