php 實現極光推送示例

2021-08-03 08:23:15 字數 1103 閱讀 6798

//極光推送的類

//文件見:

class jpushelse

}//推送的curl方法

public function push_curl($param="",$header="")

$posturl = $this->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);

curl_setopt($ch, curlopt_httpheader,$header);           // 增加 http header(頭)裡的字段

curl_setopt($ch, curlopt_ssl_verifypeer, false);        // 終止從服務端進行驗證

curl_setopt($ch, curlopt_ssl_verifyhost, false);

$data = curl_exec($ch);                                 //執行curl

curl_close($ch);

return $data;

}//呼叫例項

$jp = new jpush();

$jp->push(array('registration_id'=>array($jpushid)),'您收到一條新的**資訊',array('page'=>1));

使用Jpush 極光推送 實現推送功能

農曆猴年最後一篇文章,在寫前先寫一段話,我覺得挺好的,2017年要努力做到 學會忍耐,因為事已成現實自己無法改變 學會說不,因為做不到的事不要強求 學會適應,因為任何條件下都要生存 學會知而不言,因為言多必失 學會拿得起放得下,以為只要這樣才會能重新開始新的起點 做不了決定的時候,讓時間幫你決定,如...

phonegap push 極光訊息推送實現

最近一直在研究各種推送,ios的由於是apns,比較容易實現,但是andriod的就比較麻煩。後來看了很多解決方案,gcm明顯是不行的,其他的方案更是一頭霧水,而且需要做第二次開發,太麻煩,後來就選擇用第三方的服務來實現推送。目前國內做的比較好的有個推和極光。以下是我對phonegap 與極光sdk...

極光推送與極光IM

最近接了極光的推送和im,贊一下極光,他們的客服挺好的。極光推送會幫我們在後台推送和聊天,我們只需要按照他們文件呼叫他們的api。推送可以推送所有人,按別名,按組名,按極光regid來推送。所有人推送 catch apiconnectionexception e catch apirequestex...