PHP code example of yunchuang / push
1. Go to this page and download the library: Download yunchuang/push 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/ */
yunchuang / push example snippets
use MingYuanYun\Push\Push;
$iosCertContent =<<<EOF
-----BEGIN PRIVATE KEY-----
...
-----END PRIVATE KEY-----
EOF;
$config = [
'huawei' => [
'appPkgName' => '', // 包名
'clientId' => '',
'clientSecret' => ''
],
'huawei-v2' => [
'appPkgName' => '',
'clientId' => '',
'clientSecret' => ''
],
'meizu' => [
'appPkgName' => '',
'appId' => '',
'appSecret' => ''
],
'xiaomi' => [
'appPkgName' => '',
'appSecret' => ''
],
'oppo' => [
'appPkgName' => '',
'appKey' => '',
'masterSecret' => ''
],
'vivo' => [
'appPkgName' => '',
'appId' => '',
'appKey' => '',
'appSecret' => ''
],
'ios' => [
'isSandBox' => true, // 是否调试包
'certPath' => '', // pem格式推送证书本地绝对路径
'password' => '123', // 推送证书密码
],
'ios-token' => [
'isSandBox' => true,
'teamId' => 'D4GSYVE6CN', // 开发者帐号teamId
'keyId' => '99BYW4U4SZ', // token认证keyId
'secretContent' => $iosCertContent, // 密钥内容,有值时忽略secretFile
'secretFile' => 'xxx.p8', // token认证密钥文件本地绝对路径
'bundleId' => 'com.mysoft.mdev' // 应用ID
],
'jiguang' => [
'appPkgName' => '',
'appKey' => '',
'masterSecret' => ''
]
];
$push = new Push($config);
$push->setPusher(通道名);
$push->pushNotice(设备token, 推送内容, 附加信息);
[
"huawei": 与华为消息格式一致,下同,
"xiaomi": xxx,
"vivo": xxx,
"oppo": xxx,
"meizu": xxx,
"ios-token": xxx
]
$message = [
'businessId' => uniqid(),
'title' => 'This is title',
'content' => 'This is content',
'extra' => [
'key1' => 'v1',
'key2' => 2
],
'gatewayOptions' => [
'xiaomi' => [
'extra.notify_foreground' => '1',
],
'huawei' => [
'hps' => [
'ext' => [
'badgeAddNum' => '1',
'badgeClass' => 'com.mysoft.core.activity.LauncherActivity',
]
]
]
],
];
// 华为推送
$push->setPusher('huawei');
print $push->pushNotice(
'0864113036098917300002377300CN01',
$message,
['token' => 'CFx88jTVr6adjsh6eVOLvhtqnDlhLxb7CljykbXxu7vLsnexatUJZM1lqXHPzfnurD0gknQnIu7SRvWhAPx/zQ==']
);
// 魅族推送
$push->setPusher('meizu');
print $push->pushNotice(
['ULY6c596e6a7d5b714a475a60527c6b5f7f655a6d6370'],
$message
);
// 小米推送
$push->setPusher('xiaomi');
print $push->pushNotice(
[
'hncl+mMTtpA8BQZ66k7Fgpwa+ezlSL8AN/g8HKzTfg64GcTeTjY1C9bdrUcs2vR+',
'0VcFXBPNTLifGLIYK+GdDAiOFJQ+uWAzkfs7QYtfszBgqFV720C8zli7mce1mHj6'
],
$message
);
// Oppo推送
$push->setPusher('oppo');
$tokenInfo = $push->getAuthToken();
$options = [
'token' => $tokenInfo['token']
];
print $push->pushNotice(
'CN_40557c137ac2b5c68cbb8ac52616fefd',
$message,
$options
);
// Vivo推送
$push->setPusher('vivo');
print $push->pushNotice(
[
'15513410784181118114099',
],
$message
);
// 苹果基于证书推送
$push->setPusher('ios');
$isSandBox = true;
$certPath = '/cert/path';
$password = 'cert_pwd';
$apnsPush = new \Apns\Client([$certPath, $password], $isSandBox);
$options = [
'push' => $apnsPush
];
print $push->pushNotice(
[
'7438f5ba512cba4dcd1613e530a960cb862bd1c7ca70eae3cfe73137583c3c0d',
'720772a4df1938b14d2b732ee62ce4e157577f8453d6021f81156aaeca7032ae',
],
$message,
$options
);
// 苹果基于token推送
$push->setPusher('ios-token');
print $push->pushNotice(
[
'7438f5ba512cba4dcd1613e530a960cb862bd1c7ca70eae3cfe73137583c3c0d',
'720772a4df1938b14d2b732ee62ce4e157577f8453d6021f81156aaeca7032ae',
],
$message
);
//极光推送
$push->setPusher('jiguang');
print $push->pushNotice(
[
'160a3797c912f272068',
],
$message
);
[
'token' => 认证token,
'expires' => 有效时间,单位为秒
];
use MingYuanYun\Push\Gateways\Gateway;
class MyGateway extends Gateway
{
// ...
}
// 注册
$push->extend('custom', function ($config) {
return new MyGateway($config);
}
// config中添加通道配置
$config['custom'] = [];
// 调用
$push->setPusher('custom');
print $push->pushNotice(
'0864113036098917300002377300CN01',
$message
);
{
"cb": "{\"NS20190313171303747_0_11579902_1_3-1\":{\"param\":\"\",\"type\":1,\"targets\":[\"S5Q4b726f7b466c797c584d54000503555c427160754b\"]}}",
"access_token": "c68b05216e54409d95573912fad9c0de"
}
{
"555758542050050048": {
"param": null,
"targets": "15513410784181118114099"
}
}