Commit b1c57081c5a5bca360de451c413a850ca48aa97c
Merge remote-tracking branch 'master/master'
Showing
24 changed files
with
649 additions
and
0 deletions
5. 会员云/1.1 登录注册-发送短信验证码.md
5. 会员云/1.2 登录注册-第三方登录.md
5. 会员云/1.3 登录注册-快捷登录.md
5. 会员云/1.4 登录注册-注册.md
5. 会员云/1.5 登录注册-手机号验证码.md
5. 会员云/1.6 登录注册-登录.md
5. 会员云/2.1 用户信息-修改密码.md
5. 会员云/2.2 用户信息-上传头像.md
5. 会员云/2.3 用户信息-获取用户信息.md
5. 会员云/2.4 用户信息-修改用户信息.md
5. 会员云/3.1 收藏-更新收藏.md
| ... | ... | @@ -46,6 +46,12 @@ |
| 46 | 46 | <td>string</td> |
| 47 | 47 | <td>更新时的视频类型,多个时用__(双下划线)分割,删除时可不传;program-普通视频;series-剧集;album-专辑;ivod-点播互动;live-直播;freeview-多路流;itv-卫视互动;ilive-虚拟互动;</td> |
| 48 | 48 | </tr> |
| 49 | + <tr> | |
| 50 | + <td>sign</td> | |
| 51 | + <td>true</td> | |
| 52 | + <td>string</td> | |
| 53 | + <td>签名</td> | |
| 54 | + </tr> | |
| 49 | 55 | </table> |
| 50 | 56 | |
| 51 | 57 | ----- | ... | ... |
5. 会员云/3.2 收藏-读取收藏.md
5. 会员云/4.1 消息-我的消息列表.md
5. 会员云/4.2 消息-标记消息已读.md
5. 会员云/4.3 消息-我的未读消息.md
5. 会员云/5. 绑定设备pushId.md
7. 互动云/1.1 评论-评论一条节目.md
| 1 | +/* | |
| 2 | + Title: 1.1 评论-评论一条节目 | |
| 3 | + Sort: 11 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/commentServices/commentForHd/insertComment?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>id</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>节目ID</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>sid</td> | |
| 33 | + <td>true</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>用户ID</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>comment</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>评论内容</td> | |
| 42 | + </tr> | |
| 43 | + <tr> | |
| 44 | + <td>plat</td> | |
| 45 | + <td>true</td> | |
| 46 | + <td>string</td> | |
| 47 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 48 | + </tr> | |
| 49 | + <tr> | |
| 50 | + <td>sign</td> | |
| 51 | + <td>true</td> | |
| 52 | + <td>string</td> | |
| 53 | + <td>签名</td> | |
| 54 | + </tr> | |
| 55 | +</table> | |
| 56 | + | |
| 57 | +----- | |
| 58 | +#### 返回格式说明: | |
| 59 | +``` | |
| 60 | +{ | |
| 61 | + errorCode:"0", | |
| 62 | + errorMsg:"成功" | |
| 63 | +} | |
| 64 | +{ | |
| 65 | + errorCode:"xxx", //错误代码(非0) | |
| 66 | + errorMsg:"失败" //错误信息 | |
| 67 | +} | |
| 68 | + | |
| 69 | +``` | |
| 0 | 70 | \ No newline at end of file | ... | ... |
7. 互动云/1.2 评论-评论点赞.md
| 1 | +/* | |
| 2 | + Title: 1.2 评论-评论点赞 | |
| 3 | + Sort: 12 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/commentServices/commentForHd/praiseComment?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>id</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>节目ID</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>sid</td> | |
| 33 | + <td>true</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>用户ID</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>commentId</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>评论ID</td> | |
| 42 | + </tr> | |
| 43 | + <tr> | |
| 44 | + <td>plat</td> | |
| 45 | + <td>true</td> | |
| 46 | + <td>string</td> | |
| 47 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 48 | + </tr> | |
| 49 | + <tr> | |
| 50 | + <td>sign</td> | |
| 51 | + <td>true</td> | |
| 52 | + <td>string</td> | |
| 53 | + <td>签名</td> | |
| 54 | + </tr> | |
| 55 | +</table> | |
| 56 | + | |
| 57 | +----- | |
| 58 | +#### 返回格式说明: | |
| 59 | +``` | |
| 60 | +{ | |
| 61 | + errorCode:"0", | |
| 62 | + errorMsg:"成功" | |
| 63 | +} | |
| 64 | +{ | |
| 65 | + errorCode:"xxx", //错误代码(非0) | |
| 66 | + errorMsg:"失败" //错误信息 | |
| 67 | +} | |
| 68 | + | |
| 69 | +``` | |
| 0 | 70 | \ No newline at end of file | ... | ... |
7. 互动云/1.3 评论-评论列表.md
| 1 | +/* | |
| 2 | + Title: 1.3 评论-评论列表 | |
| 3 | + Sort: 13 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/commentServices/commentForHd/readAllComment?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>id</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>节目ID</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>page</td> | |
| 33 | + <td>true</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>页号</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>pageSize</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>每页显示的条数</td> | |
| 42 | + </tr> | |
| 43 | + <tr> | |
| 44 | + <td>plat</td> | |
| 45 | + <td>true</td> | |
| 46 | + <td>string</td> | |
| 47 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 48 | + </tr> | |
| 49 | + <tr> | |
| 50 | + <td>sign</td> | |
| 51 | + <td>true</td> | |
| 52 | + <td>string</td> | |
| 53 | + <td>签名</td> | |
| 54 | + </tr> | |
| 55 | +</table> | |
| 56 | + | |
| 57 | +----- | |
| 58 | +#### 返回格式说明: | |
| 59 | +``` | |
| 60 | +{ | |
| 61 | + "next_cursor": "0", | |
| 62 | + "previous_cursor": "0", | |
| 63 | + "total_number": "1", 总页数 | |
| 64 | + "total_columns": "1", 总条数 | |
| 65 | + "comments": [ | |
| 66 | + { | |
| 67 | + "id": "11", | |
| 68 | + "pid": "17", | |
| 69 | + "uid": "145680", | |
| 70 | + "nick": "nicknick", | |
| 71 | + "facepath": "http://www.cnlive.com", | |
| 72 | + "content": "我爱宠物第一条评论", | |
| 73 | + "created_at": "2014-05-29 10:35", | |
| 74 | + "praise":"2", | |
| 75 | + "plat": "i" | |
| 76 | + }, | |
| 77 | + { | |
| 78 | + "id": "12", | |
| 79 | + "pid": "17", | |
| 80 | + "uid": "145680", | |
| 81 | + "nick": "nicknick", | |
| 82 | + "facepath": "http://www.cnlive.com", | |
| 83 | + "content": "我爱宠物第一条评论", | |
| 84 | + "created_at": "2014-05-29 10:35", | |
| 85 | + "praise":"5", | |
| 86 | + "plat": "i" | |
| 87 | + } | |
| 88 | + ] | |
| 89 | + | |
| 90 | +} | |
| 91 | + | |
| 92 | +``` | |
| 0 | 93 | \ No newline at end of file | ... | ... |
7. 互动云/2.1 评分-读取评分排行.md
| 1 | +/* | |
| 2 | + Title: 2.1 评分-读取评分排行 | |
| 3 | + Sort: 21 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/ctServices/gradeForHdV2/readGradeRank?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>columnId</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>栏目ID</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>count</td> | |
| 33 | + <td>int</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>Top N</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>plat</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 42 | + </tr> | |
| 43 | + <tr> | |
| 44 | + <td>sign</td> | |
| 45 | + <td>true</td> | |
| 46 | + <td>string</td> | |
| 47 | + <td>签名</td> | |
| 48 | + </tr> | |
| 49 | +</table> | |
| 50 | + | |
| 51 | +----- | |
| 52 | +#### 返回格式说明: | |
| 53 | +``` | |
| 54 | +{ | |
| 55 | + errorCode: "0" | |
| 56 | + errorMessage: "1,2" (前count个评分排行的节目ID) | |
| 57 | +} | |
| 58 | + | |
| 59 | +``` | |
| 0 | 60 | \ No newline at end of file | ... | ... |
7. 互动云/2.2 评分-读取评分.md
| 1 | +/* | |
| 2 | + Title: 2.2 评分-读取评分 | |
| 3 | + Sort: 22 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/ctServices/gradeForHd/readGrade?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>ids</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>节目ID(多个以英文,号分割)</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>plat</td> | |
| 33 | + <td>true</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>sign</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>签名</td> | |
| 42 | + </tr> | |
| 43 | +</table> | |
| 44 | + | |
| 45 | +----- | |
| 46 | +#### 返回格式说明: | |
| 47 | +``` | |
| 48 | +{ | |
| 49 | + errorCode: "0" | |
| 50 | + errorMessage: "8.0,7.2" | |
| 51 | +} | |
| 52 | + | |
| 53 | +``` | |
| 0 | 54 | \ No newline at end of file | ... | ... |
7. 互动云/2.3 评分-评分V2.md
| 1 | +/* | |
| 2 | + Title: 2.3 评分-评分V2 | |
| 3 | + Sort: 23 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/ctServices/gradeForHdV2/insertGrade?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>columnId</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>栏目ID</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>id</td> | |
| 33 | + <td>true</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>节目ID</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>sid</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>用户ID</td> | |
| 42 | + </tr> | |
| 43 | + <tr> | |
| 44 | + <td>userMark</td> | |
| 45 | + <td>true</td> | |
| 46 | + <td>string</td> | |
| 47 | + <td>用户标识。用户未登录,userMark必填(客户端建议传设备号,PC建议为uuid)</td> | |
| 48 | + </tr> | |
| 49 | + <tr> | |
| 50 | + <td>rating</td> | |
| 51 | + <td>int</td> | |
| 52 | + <td>string</td> | |
| 53 | + <td>分值</td> | |
| 54 | + </tr> | |
| 55 | + <tr> | |
| 56 | + <td>plat</td> | |
| 57 | + <td>true</td> | |
| 58 | + <td>string</td> | |
| 59 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 60 | + </tr> | |
| 61 | + <tr> | |
| 62 | + <td>sign</td> | |
| 63 | + <td>true</td> | |
| 64 | + <td>string</td> | |
| 65 | + <td>签名</td> | |
| 66 | + </tr> | |
| 67 | +</table> | |
| 68 | + | |
| 69 | +----- | |
| 70 | +#### 返回格式说明: | |
| 71 | +``` | |
| 72 | +{ | |
| 73 | + errorCode:"0", | |
| 74 | + errorMsg:"成功" | |
| 75 | +} | |
| 76 | +{ | |
| 77 | + errorCode:"xxx", //错误代码(非0) | |
| 78 | + errorMsg:"失败" //错误信息 | |
| 79 | +} | |
| 80 | + | |
| 81 | +``` | |
| 0 | 82 | \ No newline at end of file | ... | ... |
7. 互动云/2.4 评分-读取评分V2.md
| 1 | +/* | |
| 2 | + Title: 2.4 评分-读取评分V2 | |
| 3 | + Sort: 24 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/ctServices/gradeForHdV2/readGrade?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>columnId</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>栏目ID</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>ids</td> | |
| 33 | + <td>true</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>节目ID(多个以英文,号分割)</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>plat</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 42 | + </tr> | |
| 43 | + <tr> | |
| 44 | + <td>sign</td> | |
| 45 | + <td>true</td> | |
| 46 | + <td>string</td> | |
| 47 | + <td>签名</td> | |
| 48 | + </tr> | |
| 49 | +</table> | |
| 50 | + | |
| 51 | +----- | |
| 52 | +#### 返回格式说明: | |
| 53 | +``` | |
| 54 | +{ | |
| 55 | + errorCode: "0" | |
| 56 | + errorMessage: "8.0,7.2" (根据ids顺序,返回评分值) | |
| 57 | +} | |
| 58 | + | |
| 59 | +``` | |
| 0 | 60 | \ No newline at end of file | ... | ... |
7. 互动云/2.5 评分-评分.md
| 1 | +/* | |
| 2 | + Title: 2.5 评分-评分 | |
| 3 | + Sort: 25 | |
| 4 | +*/ | |
| 5 | +#### URL: http://api.cnlive.com/open/api/ctServices/gradeForHd/insertGrade?sp_id=xxx&... | |
| 6 | +----- | |
| 7 | +#### 请求方式: POST | |
| 8 | +----- | |
| 9 | +#### 返回格式: JSON | |
| 10 | +----- | |
| 11 | +#### 请求参数说明: | |
| 12 | +<table class="table table-bordered table-striped table-condensed"> | |
| 13 | + <tr> | |
| 14 | + <th>参数</th> | |
| 15 | + <th>必选</th> | |
| 16 | + <th>类型</th> | |
| 17 | + <th>说明</th> | |
| 18 | + </tr> | |
| 19 | + <tr> | |
| 20 | + <td>sp_id</td> | |
| 21 | + <td>true</td> | |
| 22 | + <td>string</td> | |
| 23 | + <td>服务提供商ID</td> | |
| 24 | + </tr> | |
| 25 | + <tr> | |
| 26 | + <td>id</td> | |
| 27 | + <td>true</td> | |
| 28 | + <td>string</td> | |
| 29 | + <td>节目ID</td> | |
| 30 | + </tr> | |
| 31 | + <tr> | |
| 32 | + <td>sid</td> | |
| 33 | + <td>true</td> | |
| 34 | + <td>string</td> | |
| 35 | + <td>用户ID</td> | |
| 36 | + </tr> | |
| 37 | + <tr> | |
| 38 | + <td>userMark</td> | |
| 39 | + <td>true</td> | |
| 40 | + <td>string</td> | |
| 41 | + <td>用户标识。 用户未登录,userMark必填(客户端建议传设备号,PC建议为uuid)</td> | |
| 42 | + </tr> | |
| 43 | + <tr> | |
| 44 | + <td>rating</td> | |
| 45 | + <td>true</td> | |
| 46 | + <td>int</td> | |
| 47 | + <td>分值</td> | |
| 48 | + </tr> | |
| 49 | + <tr> | |
| 50 | + <td>plat</td> | |
| 51 | + <td>true</td> | |
| 52 | + <td>string</td> | |
| 53 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 54 | + </tr> | |
| 55 | + <tr> | |
| 56 | + <td>sign</td> | |
| 57 | + <td>true</td> | |
| 58 | + <td>string</td> | |
| 59 | + <td>签名</td> | |
| 60 | + </tr> | |
| 61 | +</table> | |
| 62 | + | |
| 63 | +----- | |
| 64 | +#### 返回格式说明: | |
| 65 | +``` | |
| 66 | +{ | |
| 67 | + errorCode: "0" | |
| 68 | + errorMessage: "8.0,7.2" (根据ids顺序,返回评分值) | |
| 69 | +} | |
| 70 | + | |
| 71 | +``` | |
| 0 | 72 | \ No newline at end of file | ... | ... |