极光推送(php)

极光推送:

拿取自己注册的AppKey 和 Master Secret
在这里插入图片描述
其次看文档

代码描述:

    /**组装需要的参数
    $receive = 'all';//全部
    $receive = array('tag'=>array('###','###','###'));//标签
    $receive = array('alias'=>array('fdsfd3453543435435453*****88497f501'));//别名
    $content = '这是一个测试的推送数据....测试....Hello World...';
    $m_type = 'http';
    $m_txt = 'http://www.iqujing.com/';
    **/
      //极光推送
    public static function sendPush()
    {
        $m_type = 'http';//推送附加字段的类型
        $m_txt = 'http://www.groex.cn/';//推送附加字段的类型对应的内容(可不填) 可能是url,可能是一段文字。
        $m_time = 86400;//离线保留时间
        $platform = 'all';
        $receive = "all";  // ["alias" => [ "123" ]];  可以是别名 也可以registration_id
        
        //要在demo里设置
        $content = '极光推送';//安卓标题
        $title = '我就是我看谁都上火';//安卓内容
        $return_data = self::jiguang_send($receive, $title, $content, $platform, $m_type, $m_txt, $m_time);
        if ($return_data === true) {
            return 1;
        }
        return 0;

    }


    /**
     * @param $receive 推送目标 别名、标签、注册 ID、分群、广播
     * @param $content 推送内容
     * @param $platform 推送平台  Android, iOS, Windows Phone 三个平台的推送 all 或者 { "platform" : ["android", "ios"] }
     * @param $m_type extras JSON 格式的可选参数 key/value 形式
     * @param $m_txt  extras JSON 格式的可选参数 key/value 形式 可以传文字或者url让app端识别 跳转到特定页面
     * @param $m_time int    离线保留时间
     * @return mixed
     */
    public
    static function jiguang_send($receive, $title, $content, $platform, $m_type, $m_txt, $m_time)
    {
        $appkey = config('Jgpush.appkey'); //AppKey
        $secret = config('Jgpush.secret'); //Secret
        $postUrl = "https://api.jpush.cn/v3/push";
        $base64 = base64_encode("$appkey:$secret");
        $header = array("Authorization:Basic $base64", "Content-Type:application/json"); //调用验证
        $data = array();
        $data['platform'] = $platform;     //目标用户终端手机的平台类型android,ios,winphone
        $data['audience'] = $receive;      //目标用户
        $data['notification'] = array(
            //统一的模式--标准模式
            "alert" => $content,
            //安卓自定义
            "android" => array(
                "alert" => $content,
                "title" => $title,
                "builder_id" => 1,
                "extras" => array("type" => $m_type, "txt" => $m_txt)
            ),
            //ios的自定义
            "ios" => array(
                "alert" => $content,
                "sound"=> "default",
                "badge" => "1",
                "sound" => "default",
                "extras" => array("type" => $m_type, "txt" => $m_txt)
            )
        );

        //苹果自定义---为了弹出值方便调测
        $data['message'] = array(
            "msg_content" => $content,
            "extras" => array("type" => $m_type, "txt" => $m_txt)
        );

        //附加选项
        $data['options'] = array(
            "sendno" => time(),   //推送序号
            "time_to_live" => $m_time,  //离线消息保留时长(秒)
            "apns_production" => false,    //布尔类型   指定 APNS 通知发送环境:0开发环境,1生产环境。或者传递false和true
        );
        $param = json_encode($data);
        $curlPost = $param;
        return self::jiguangPost($postUrl, $curlPost, $header);
    }

    public static function jiguangPost($postUrl, $curlPost, $header)
    {
        $ch = curl_init();                                              //初始化curl
        curl_setopt($ch, CURLOPT_URL, $postUrl);                 //抓取指定网页
        curl_setopt($ch, CURLOPT_HEADER, 0);                //设置header
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);            //要求结果为字符串且输出到屏幕上
        curl_setopt($ch, CURLOPT_POST, 1);                      //post提交方式
        curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
        curl_setopt($ch, CURLOPT_HTTPHEADER, $header);           // 增加 HTTP Header(头)里的字段
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);        // 终止从服务端进行验证
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        $return_data = curl_exec($ch);                                 //运行curl
        curl_close($ch);
        $return_data = json_decode($return_data, true);          //如果发送失败会有error 其中有错误码和错误信息
        if (empty($return_data['error'])) {
            return true;
        }
        return false;
    }

在这里插入图片描述
恭喜你推送成功了
在这里插入图片描述
简单的搞了一下,
极光通知推送PHP代码及调用方法

坑分析:

小心 1003
在这里 $receive = array(‘alias’=>array(’######’));//别名注意一下

$receive = ‘all’ ; 好使
在这里插入图片描述


版权声明:本文为m0_50593634原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。