激光推送
引入激光推送PHP sdk (文件夹命名为JPush)放入到项目中,在相关接口引入sdk文件夹位置下的autoload.php
如下:
require 'extend/org/JPush/autoload.php';
use JPush\Client as JPush;
并在相关接口位置放入以下代码
$client = new JPush($app_key, $master_secret);
$aa = $client->push()
->setPlatform('all')
->addAlias($driver_id) //$driver_id : 设置别名
->setNotificationAlert($xiaoxi) //$xiaoxi : 消息通知的文字提示
->send();
//给android传参数(id) ---放在App登陆时使用
window.hello.javaMethod(userid);