文档
测试

公共 - 獲取主播的相冊

POST
/api/mc/photo/getHomePhoto

请求头

参数名
类型
描述
必填
XX-Token
string
用户token
必填
XX-Device-Type
string
设备类型 android、ios
必填

请求参数

参数名
类型
描述
必填
anchor_id
int
主播ID
必填
page
int
分頁,默認為1
必填
limit
int
非必須,默認為10,最大50
必填

响应参数

参数名
类型
描述
必填
code
int
返回码
必填
msg
string
提示信息
必填
data
array
返回数据
必填

说明 / 示例

thumb为原始图片地址 thumb_s为缩略图地址 如果cansee为0,则原始/缩略图地址均返回默认的隐藏的默认图片 ```json { "code": 1, "msg": "成功", "data": [ { "id": 95, "uid": 102035, "thumb": "http://www.test.com/test.jpg", "views": 0, "isprivate": 1, "coin": 20, "thumb_s": "http://www.test.com/test.jpg?imageView2/1/w/200/h/300", "cansee": 1 }, { "id": 65, "uid": 102035, "thumb": "http://img-qn-hn.milamobile.com/android_102035_20210106_151139_0672167.jpg", "views": 5, "isprivate": 1, "coin": 10, "thumb_s": "http://img-qn-hn.milamobile.com/android_102035_20210106_151139_0672167.jpg?imageView2/1/w/200/h/300", "cansee": 1 }, { "id": 64, "uid": 102035, "thumb": "http://img-qn-hn.milamobile.com/android_102035_20210106_151128_2273769.jpg", "views": 3, "isprivate": 0, "coin": 0, "thumb_s": "http://img-qn-hn.milamobile.com/android_102035_20210106_151128_2273769.jpg?imageView2/1/w/200/h/300", "cansee": 1 }, { "id": 63, "uid": 102035, "thumb": "http://img-qn-hn.milamobile.com/android_102035_20210106_151116_1632904.jpg", "views": 3, "isprivate": 0, "coin": 0, "thumb_s": "http://img-qn-hn.milamobile.com/android_102035_20210106_151116_1632904.jpg?imageView2/1/w/200/h/300", "cansee": 1 }, { "id": 62, "uid": 102035, "thumb": "http://img-qn-hn.milamobile.com/android_102035_20210106_151102_1935040.jpg", "views": 0, "isprivate": 0, "coin": 0, "thumb_s": "http://img-qn-hn.milamobile.com/android_102035_20210106_151102_1935040.jpg?imageView2/1/w/200/h/300", "cansee": 1 }, { "id": 61, "uid": 102035, "thumb": "http://img-qn-hn.milamobile.com/android_102035_20210106_151048_3803232.jpg", "views": 3, "isprivate": 0, "coin": 0, "thumb_s": "http://img-qn-hn.milamobile.com/android_102035_20210106_151048_3803232.jpg?imageView2/1/w/200/h/300", "cansee": 1 }, { "id": 60, "uid": 102035, "thumb": "http://img-qn-hn.milamobile.com/android_102035_20210106_151035_4749434.jpg", "views": 0, "isprivate": 0, "coin": 0, "thumb_s": "http://img-qn-hn.milamobile.com/android_102035_20210106_151035_4749434.jpg?imageView2/1/w/200/h/300", "cansee": 1 }, { "id": 59, "uid": 102035, "thumb": "http://img-qn-hn.milamobile.com/android_102035_20210106_151014_9856768.jpg", "views": 5, "isprivate": 1, "coin": 5, "thumb_s": "http://img-qn-hn.milamobile.com/android_102035_20210106_151014_9856768.jpg?imageView2/1/w/200/h/300", "cansee": 1 } ] } ```