程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 改寫百度雲推送SDK,PHP PEAR 包:Services_Baidu_Push

改寫百度雲推送SDK,PHP PEAR 包:Services_Baidu_Push

編輯:關於PHP編程

iPhone使用apple push很方便,而Android很多廠商刪除了google push,而且google在大陸連不上,所以要用別的辦法。

Android常見的推送服務商有:極光推送(https://www.jpush.cn/)、百度雲推送。

app加入推送的lib,會有一個常駐後台進程,通過推送服務商推送消息,無需啟動app。

 

百度雲推送官方文檔:http://developer.baidu.com/cloud/push

標准URI

PEAR的優勢:一鍵安裝到php/lib/php目錄,require即可使用,很方便。

百度推送的官方sdk不符合PEAR標准,使用不便,不想為百度重寫,所以我改寫了一下(sdk中帶的很多垃圾沒去改寫),安裝步驟如下:

pear channel-discover sinkcup.github.io/ sinkcup/Services_Baidu_Push

使用步驟:

1、注冊登錄百度開發者後台,獲得api key和secret key,在app裡添加lib。

2、demo(參考https://github.com/sinkcup/Services_Baidu_Push/blob/master/tests/Services/Baidu/PushTest.php)

<? 'Services/Baidu/Push.php' = 'asdf' = 'qwer' =  Services_Baidu_Push(,  = "description"=> "testSimplePushToAndroid群發",
    "notification_basic_style"=>7, = ->simplePushToAndroid((?>

()

我的PEAR 頻道:http://sinkcup.github.io/pear/

項目源代碼:https://github.com/sinkcup/Services_Baidu_Push

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved