极光推送服务demo
说明
本服务版本是最基本的,没有用到标签tag和用户群组;如用到这些功能,请参考官方文档进行设置。 在以后我会完善服务程序以及本文档,希望做得全一些。
Github仓库地址
https://github.com/rayxyz/pushsvr
在服务程序用到了第三方库ylywyn/jpush-api-go-client,并改写了例子程序。
创建极光推送账号
创建应用并配置应用
推送配置
按照极光推送官网文档说明
将配置的应用下载下来,导入到Android Studio
将应用打包到Android设备
编写Go服务端,对外提供push调用服务
部署推送服务
这里我将应用部署到个人服务器www.ray-xyz.com
请求地址
post请求
http://www.ray-xyz.com:6060/push
参数 kind => 类型: “notif”为通知,”msg”为消息 content => 推送的内容
{ "kind": "notif", "content": "Hi, push server!!" }
成功时返回
{"success":"true","msg":"Successfully pushed data.","data":"{\"sendno\":\"0\",\"msg_id\":\"1973830861\"}"}
后台打印
Push server runs on port 6060.2017/08/28 03:27:39 params => {notif Hi, push server!!} 2017/08/28 03:27:39 kind => notif 2017/08/28 03:27:39 content => Hi, push server!! 2017/08/28 03:27:39 >>> Payload detail info: {"platform":["android","ios"],"audience":"all","notification":{"alert":"ray_alert","android":{"alert":"Hi, push server!!"},"ios":{"alert":"Hi, push server!!"}},"options":{"apns_production":false}}
Android移动端即时收到推送的通知消息
LICENSE
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. http://fsf.org/ Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.