PHP code example of javareact / easypush
1. Go to this page and download the library: Download javareact/easypush library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
javareact / easypush example snippets
// -------------------- 独立运行:工厂模式 ---------------------
# 赋值你要使用哪个平台的配置,说明文档最下面为各平台的配置参考
// 设置标题和消息、自定义参数
$push = PushFactory::getInstance($driveName)::init($config)
->setTitle('标题')
->setBody('消息正文')
->setExtendedData(['a' => 1, 'b' => 2]);// 自定义扩展参数
// *************** 发送方法 **********
# 广播:所有平台
$push->sendAll();
# 广播:安卓
$push->sendAllAndroid();
# 广播:IOS
$push->sendAllIOS();
# 单播:所有平台
$push->sendOne('设备码');
# 单播:安卓
$push->sendOneAndroid('设备码');
# 单播:IOS
$push->sendOneIOS('设备码');
// *** 初始化驱动
// 友盟配置
$config = [
'android' => [
'appKey' => 'appKey',
'appMasterSecret' => 'appMasterSecret'
],
'IOS' => [
'appKey' => 'appKey',
'appMasterSecret' => 'appMasterSecret'
]
];
// 信使配置
$config = [
'expireTime' => 86400,
'android' => [
'accessId' => 'accessId',
'secret_key' => 'secret_key',
],
'IOS' => [
'accessId' => 'accessId',
'secret_key' => 'secret_key',
]
];
// 个推配置
$config = [
'AppID' => 'AppID',
'AppKey' => 'AppKey',
'MasterSecret' => 'AppKey',
];
// 接上面的配置
// 友盟
$driveName = 'Umeng';
// 信鸽
$driveName = 'Xingge';
// 个推
$driveName = 'GeTui';
// YII的components设置:
'components'=> [
'push' => [
'class' => 'xing\push\Yii',
'driveName' => $driveName, // 驱动名
// 配置
'config' => $config
],
];