# 获取内容列表 API
获取内容列表接口
使用GET发起请求,请求地址为/api/v1/stl/contents
GET /api/v1/stl/contents HTTP/1.1
# 请求 URI
| 参数名 | 类型 | 必填 | 说明 | 
|---|---|---|---|
| siteId | 字符串 | 否 | 站点Id | 
| siteDir | 字符串 | 否 | 站点文件夹 | 
| channelId | 字符串 | 否 | 栏目Id | 
| channelIndex | 字符串 | 否 | 栏目索引 | 
| channelName | 字符串 | 否 | 栏目名称 | 
| apiKey | 字符串 | 否 | API 密钥,请参考身份认证 | 
/api/v1/stl/contents的其他参数与<stl:contents>标签一致。
# 返回
| 名称 | 类型 | 说明 | 
|---|---|---|
| 200 OK | Content 列表 | 内容列表 | 
| 401 Unauthorized | Error | 认证错误 | 
| 400 BadRequest | Error | 参数错误 | 
# 示例
# 请求示例
GET /api/v1/stl/contents?siteId=1&channelId=1118 HTTP/1.1
Content-Type: application/json
X-SS-API-KEY: 7cd22002-27a7-4c5d-ba4d-a1c108a20eaf
# 返回示例
{
  "value": [
    {
      "id": 1525,
      "channelId": 1118,
      "siteId": 1,
      "addUserName": "admin",
      "lastEditUserName": "admin",
      "writingUserName": "",
      "lastEditDate": "2018-05-21 10:13:00",
      "taxis": 2000000001,
      "groupNameCollection": "",
      "tags": "",
      "sourceId": 0,
      "referenceId": 0,
      "isChecked": true,
      "checkedLevel": 0,
      "hits": 40,
      "hitsByDay": 1,
      "hitsByWeek": 5,
      "hitsByMonth": 40,
      "lastHitsDate": "2018-05-23 00:00:00",
      "title": "雪山深处, 永远热泪盈眶的年轻",
      "isTop": true,
      "isRecommend": true,
      "isHot": true,
      "isColor": true,
      "addDate": "2018-02-23 10:32:00",
      "linkUrl": "",
      "settingsXml": "comments=0&photos=0&freereadings=&paidreadings=&fullreadingprice=&paperprice=&titleformatstring=False_False_False_&check_isadmin=True&check_username=admin&check_checkdate=2018-05-21 10:13&check_reasons="
    },
    {
      "id": 1524,
      "channelId": 1118,
      "siteId": 1,
      "addUserName": "admin",
      "lastEditUserName": "admin",
      "writingUserName": "",
      "lastEditDate": "2018-02-27 15:45:00",
      "taxis": 1,
      "groupNameCollection": "",
      "tags": "",
      "sourceId": 0,
      "referenceId": 0,
      "isChecked": true,
      "checkedLevel": 0,
      "hits": 2,
      "hitsByDay": 2,
      "hitsByWeek": 2,
      "hitsByMonth": 2,
      "lastHitsDate": "2018-05-06 00:00:00",
      "title": "京津冀大学生舞热冰雪白飘带",
      "isTop": true,
      "isRecommend": true,
      "isHot": true,
      "isColor": true,
      "addDate": "2018-02-22 10:51:00",
      "linkUrl": "",
      "settingsXml": "comments=0&photos=0&freereadings=&paidreadings=&fullreadingprice=&paperprice=&titleformatstring=False_False_False_&check_isadmin=True&check_username=雪之浪漫&check_checkdate=2018-02-22 11:01"
    }
  ]
}