這幾天研究極光推送,發現挺好玩的
乙個jpush極光推送遠端呼叫api簡單的例項,php伺服器,**貼上
文件參考:
send.php
<?php
include('jpush.php');
$n_title
= '極光推送title';
$n_content =
'極光推送message';
$mastersecret = '***xx';
$sendno = 1234;//傳送編號 最大支援32位正整數,由開發者自己維護,用於開發者自己標識一次傳送請求。
$receiver_value = '';
$platform = 'android,ios' ;
$msg_content = json_encode(array('n_builder_id'=>0, 'n_title'=>$n_title, 'n_content'=>$n_content));
$res = $obj->send($sendno, 4, $receiver_value, 1, $msg_content, $platform);
print_r($res);
exit();
?>
jpush.php
<?php
class jpush
function request_post($url = '', $param = '')
$posturl = $url;
$curlpost = $param;
$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);
$data = curl_exec($ch);//執行curl
curl_close($ch);
return $data; }
// 傳送
// @param int $sendno 傳送編號。由開發者自己維護,標識一次傳送請求
// @param int $receiver_type 接收者型別。
// 2、指定的 tag。
// 3、指定的 alias。
// @param string $receiver_value 傳送範圍值,與 receiver_type相對應。
// 1、imei只支援乙個
// 2、tag 支援多個,使用 "," 間隔。
// 3、alias 支援多個,使用 "," 間隔。
// 4、不需要填
// @param int $msg_type 傳送訊息的型別:1、通知 2、自定義訊息
// @param string $msg_content 傳送訊息的內容。 與 msg_type 相對應的值
// @param string $platform 目標使用者終端手機的平台型別,如: android, ios 多個請使用逗號分隔
function send($sendno = 0,$receiver_type = 1, $receiver_value = '', $msg_type = 1, $msg_content = '', $platform = 'android,ios')
$res_arr = json_decode($res, true);
return $res_arr; }
}?>
JPush極光推送
推送即伺服器給客戶端傳送通知訊息 package org.mobiletrain.a9 1jpush xmlns android android name cn.jpush.android.ui.popwinactivity android exported false android theme ...
極光推送(JPush)官方文件
本文匹配的 sdk版本 r1.2.5 以後。檢視最近更新了解最新的sdk更新情況。極光推送 jpush 是乙個端到端的推送服務,使得伺服器端訊息能夠及時地推送到終端使用者手機上,讓開發者積極地保持與使用者的連線,從而提高使用者活躍度 提高應用的留存率。極光推送客戶端支援 android,ios 兩個...
使用Jpush 極光推送 實現推送功能
農曆猴年最後一篇文章,在寫前先寫一段話,我覺得挺好的,2017年要努力做到 學會忍耐,因為事已成現實自己無法改變 學會說不,因為做不到的事不要強求 學會適應,因為任何條件下都要生存 學會知而不言,因為言多必失 學會拿得起放得下,以為只要這樣才會能重新開始新的起點 做不了決定的時候,讓時間幫你決定,如...