“推送api”的版本间的差异
来自Blueidea
(以内容“PUSH消息API<br><br> == 个人信息更新push == '''参数说明''': :{| class="wikitable" style="font-size:13px;" ! 参数名称 ! 类型及范围 ! 说明 |- !sco...”创建新页面) |
|||
(未显示2个用户的28个中间版本) | |||
第1行: | 第1行: | ||
− | + | PUSH消息API(队列名称:que_push2app)<br> | |
− | == 个人信息更新push == | + | '''发送格式''': |
+ | <source lang="javascript"> | ||
+ | { | ||
+ | type:'平台序号',(1:信鸽) | ||
+ | accessid:'push平台的key', | ||
+ | secretkey:'push平台的secretkey', | ||
+ | ['token1','token2',...],//发送到目标的所有token | ||
+ | "data":{ | ||
+ | // 参数,参考下面的说明 | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
+ | == 个人信息更新push(队列) == | ||
'''参数说明''': | '''参数说明''': | ||
:{| class="wikitable" style="font-size:13px;" | :{| class="wikitable" style="font-size:13px;" | ||
第16行: | 第28行: | ||
| int|| 用户类型(1老师,2家长,3学生) | | int|| 用户类型(1老师,2家长,3学生) | ||
|- | |- | ||
− | !scope="row"| | + | !scope="row"|dateline |
| string || 更新时间 | | string || 更新时间 | ||
|- | |- | ||
!scope="row"|message | !scope="row"|message | ||
| string || 说明 | | string || 说明 | ||
+ | |} | ||
+ | |||
+ | == 班级信息更新push == | ||
+ | '''参数说明''': | ||
+ | :{| class="wikitable" style="font-size:13px;" | ||
+ | ! 参数名称 | ||
+ | ! 类型及范围 | ||
+ | ! 说明 | ||
+ | |- | ||
+ | !scope="row"|cid | ||
+ | | string ||班级id | ||
+ | |- | ||
+ | !scope="row"|cname | ||
+ | | string || 班级名称 | ||
+ | |- | ||
+ | !scope="row"|grade | ||
+ | | int|| 年级 | ||
+ | |- | ||
+ | !scope="row"|serialno | ||
+ | | string || 更新时间 | ||
+ | |- | ||
+ | !scope="row"|inserialno | ||
+ | | string || 更新时间 | ||
+ | |- | ||
+ | !scope="row"|cnick | ||
+ | | string || 更新时间 | ||
+ | |- | ||
+ | !scope="row"|createrid | ||
+ | | string || 创建者id | ||
+ | |- | ||
+ | !scope="row"|creator | ||
+ | | string || 创建者 | ||
+ | |- | ||
+ | !scope="row"|dateline | ||
+ | | string || 创建时间 | ||
+ | |} | ||
+ | |||
+ | == 发帖push信息 == | ||
+ | '''参数说明''': | ||
+ | :{| class="wikitable" style="font-size:13px;" | ||
+ | ! 参数名称 | ||
+ | ! 类型及范围 | ||
+ | ! 说明 | ||
+ | |- | ||
+ | !scope="row"|postid | ||
+ | | int||帖子id | ||
+ | |- | ||
+ | !scope="row"|dateline | ||
+ | | date|| 发表时间 | ||
+ | |- | ||
+ | !scope="row"|views | ||
+ | | int|| 浏览次数 | ||
+ | |- | ||
+ | !scope="row"|replies | ||
+ | | int|| 回复次数 | ||
+ | |- | ||
+ | !scope="row"|digest | ||
+ | | int|| 是否精华 | ||
+ | |- | ||
+ | !scope="row"|author | ||
+ | | string || 作者 | ||
+ | |- | ||
+ | !scope="row"|authorid | ||
+ | | int || 作者id | ||
+ | |- | ||
+ | !scope="row"|message | ||
+ | | string|| 帖子内容 | ||
+ | |- | ||
+ | !scope="row"|useip | ||
+ | | string|| 发帖者IP | ||
|} | |} |
2014-08-02T15:10:25的最后版本
PUSH消息API(队列名称:que_push2app)
发送格式:
{ type:'平台序号',(1:信鸽) accessid:'push平台的key', secretkey:'push平台的secretkey', ['token1','token2',...],//发送到目标的所有token "data":{ // 参数,参考下面的说明 } }
个人信息更新push(队列)
参数说明:
参数名称 类型及范围 说明 uid string 用户id username string 用户名 type int 用户类型(1老师,2家长,3学生) dateline string 更新时间 message string 说明
班级信息更新push
参数说明:
参数名称 类型及范围 说明 cid string 班级id cname string 班级名称 grade int 年级 serialno string 更新时间 inserialno string 更新时间 cnick string 更新时间 createrid string 创建者id creator string 创建者 dateline string 创建时间
发帖push信息
参数说明:
参数名称 类型及范围 说明 postid int 帖子id dateline date 发表时间 views int 浏览次数 replies int 回复次数 digest int 是否精华 author string 作者 authorid int 作者id message string 帖子内容 useip string 发帖者IP