android 服务器端推送

http://sizeed.blog.163.com/blog/static/9652545120125274113782/?latestBlog


通过建立持久连接的方法,服务器端发送信息给手机用户。

方法一:MQTT协议(实例android+php)

1、服务器端需下载安装IBM的 Really Small Message Broker (RSMB)(MQTT协议代理),并运行broker;

下载地址:http://www.alphaworks.ibm.com/tech/rsmb

2、PHP服务器端使用SAM 针对MQTT写的PHP库(下载链接为Tokudu PHPMQTT通信项目),其中send_mqtt.php是一个通过POST接收消息并且通过SAM将消息发送给RSMB的PHP脚本;

3、实例下载:

说明:http://tokudu.com/2010/how-to-implement-push-notifications-for-android/

android客户端:https://github.com/tokudu/AndroidPushNotificationsDemo

php服务器端:https://github.com/tokudu/PhpMQTTClient

 

方法二:XMPP协议(实例android+jsp)

XMPP : The Extensible Messaging and Presence Protocol (可扩展通讯和表示协议) XMPP 以 Jabber 协议为基础,而 Jabber 是即时通讯中常用的开放式协议。

下载地址: http://sourceforge.net/projects/androidpn/files/

解压服务器端,点击bin/run.bat运行,访问:http://127.0.0.1:7070/index.do,就可以看服务器端的管理页面,用这个管理页面,就要向客户端push消息。


方法三:使用APNS (Android Push Notification Service)

http://www.push-notification.org/

APNS (Android Push Notification Service) 是一种在 android 上轻松实现 push notification 的功能的解决方案. 只需申请一个 API Key, 经过简单的步骤即可实现 push notification 的功能.


你可能感兴趣的:(android 服务器端推送)