android中的push机制实现:android push notification serfice
APNS 是什么?
b) 发送 Notification 到设备
通过 rest 接口发送 Notification:
http://www.push-notification.org/handlers/apns_v1.php?ch=YourChannelId&devId=xxxxx&msg =hello world&random=0123&hash=HashCode
ch:Channel IddevId:接收设备 Idmsg:消息random:随机数hash:md5(ch + devId + msg + random + apiKey)Notes 申请API后,可登录开发者页面使用测试控制台进行API测试.