# 批量查询资源总收藏数量
# 调用方式: GET
# 接口地址:
https://api.freelog.com/v2/collections/resources/batch/count
1
# 传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
resourceIds | 必选 | string | 资源ID,多个用逗号分隔 |
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
resourceId | string | 资源ID |
count | int | 总收藏数量 |
# 示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": [{
"resourceId": "61f10d71972df60039766179",
"count": 1
}, {
"resourceId": "5f9fc81a3851db0030b9cd14",
"count": 1
}, {
"resourceId": "5f969e229e5680002edd11e6",
"count": 1
}]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16