## 获取素材列表
**简要描述:**
* 获取素材列表
**请求URL:**
* /wechat/message/findPage
**请求方式:**
* POST
**参数:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| id| 否 | int| 图文id 获取详情时传递 |
| current_page| 否 | number | 当前页 |
| per_page | 否 | number | 分页查询每页数量 默认 10 |
**返回参数**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| id| 是 | int | id |
| to_weixin| 是 | int| 是否已同步到微信 1是 0否 |
| add_time| 是| string| 创建时间 |
| articles| 是 | array | 文章列表 |
| article_id| 是 | int| 文章id |
| title| 是 | string| 标题 |
| thumb_media_id| 是 | string | 图文消息的封面图片素材id |
| url| 是 | string| 微信返回的素材url |
| author| 是 | string| 作者 |
| digest| 是 | string| 摘要 |
| show_cover_pic| 是 | int | 是否显示封面,0否,1是 |
| content| 是 | string| 内容 详情是有该字段,列表时不返回 |
| content_source_url| 是 | string|图文消息的原文地址,即点击“阅读原文”后的URL |
| need_open_comment| 是 | int | 是否打开评论,0不打开,1打开 |
| only_fans_can_comment| 是 | int | 是否粉丝才可评论,0所有人可评论,1粉丝才可评论,2 仅关注3天及以上可留言 |
| to_weixin| 是 | int | 是否已同步到微信 1是 0否 |
| status| 是 | int | 1正常 0禁用 |
| current_page| 否 | number | 当前页 |
| per_page | 否 | number | 分页查询每页数量 默认 10 |
| last_page| 否 | number | 总页数 |
| total | 否 | number | 总数量|
**返回示例**
~~~
{
"msg": "success",
"data": {
"total": 2,
"per_page": 10,
"current_page": 1,
"last_page": 1,
"data": [
{
"id": 18,
"to_weixin": 0,
"add_time": "2020-08-29 13:28:37",
"articles": [
{
"article_id": 1,
"title": 标题,
"thumb_media_id": xxx,
"url": "xxxxxxxxxxxxxxxxxxxxxx",
"author": "作者",
"digest": "摘要摘要",
"show_cover_pic": 1,
"content": "我是正文",
"content_source_url": "http://www.baidu.com",
"need_open_comment": 1,
"only_fans_can_comment": 1,
"to_weixin": 0,
"status": 1
},
{
"article_id": 2,
"title": 标题2,
"thumb_media_id": xxx,
"url": "xxxxxxxxxxxxxxxxxxxxxx",
"author": "作者2",
"digest": "摘要摘要2",
"show_cover_pic": 1,
"content": "我是正文2",
"content_source_url": "http://www.baidu.com",
"need_open_comment": 1,
"only_fans_can_comment": 1,
"to_weixin": 0,
"status": 1
}
]
},
{
"id": 19,
"to_weixin": 0,
"add_time": "2020-08-29 13:28:37",
"articles": [
{
"article_id": 1,
"title": 标题,
"thumb_media_id": xxx,
"url": "xxxxxxxxxxxxxxxxxxxxxx",
"author": "作者",
"digest": "摘要摘要",
"show_cover_pic": 1,
"content": "我是正文",
"content_source_url": "http://www.baidu.com",
"need_open_comment": 1,
"only_fans_can_comment": 1,
"to_weixin": 0,
"status": 1
},
{
"article_id": 2,
"title": 标题2,
"thumb_media_id": xxx,
"url": "xxxxxxxxxxxxxxxxxxxxxx",
"author": "作者2",
"digest": "摘要摘要2",
"show_cover_pic": 1,
"content": "我是正文2",
"content_source_url": "http://www.baidu.com",
"need_open_comment": 1,
"only_fans_can_comment": 1,
"to_weixin": 0,
"status": 1
}
]
}
]
},
"code": 200
}
~~~