接口简介
- 用于查询历史推送记录
接口请求说明
请求方式
GET https://站点接口域名/openapi/pushes
请求参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
page | int | ✅ | 普通分页 |
per-page | int | 每页返回数据条数,默认为10,配合page或cursor使用 |
请求示例
# GET请求
curl -X GET 'https://站点接口域名/openapi/pushes?page=1&per-page=10' \
-H 'Authorization: Bearer 5d39164d1f281' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json'
接口响应说明
响应示例
{
"code": 0,
"text": "",
"data": [
{
"id": 1,
"title": "常州的高温天还要持续!",
"content": "告诉常州人一条坏消息:今天我市最高气温仍可达37℃以上,且高温天还将持续4天!本周天气基本是这样....详情请戳》》》",
"image": "",
"target_type": 10,
"target_value": "12157277",
"direct": "",
"method": 0,
"cast_type": 0,
"platform": 0,
"created_time": "1970-01-01 08:00:00",
"start_time": "1970-01-01 08:00:00"
},
{
"id": 2,
"title": "92岁老太疑因太热引发脑溢血身亡",
"content": "高温“杀手”!常州一名九十多岁老太太疑因过于炎热引发脑溢血身亡!各位老人平日里习惯了节俭,提醒大家天气炎热一定要避暑!更多详情请戳》》",
"image": "",
"target_type": 10,
"target_value": "12158248",
"direct": "",
"method": 0,
"cast_type": 1,
"platform": 1,
"created_time": "2015-08-03 20:57:13",
"start_time": "2015-08-03 20:57:13"
},
...
],
"time": 1565666709
}
响应结果说明
字段名 | 类型 | 说明 |
---|---|---|
id | int | id |
title | string | 标题 |
content | string | 内容 |
image | string | 图片 |
target_type | int | 跳转类型 |
target_value | string | 跳转目标 |
direct | string | 协议跳转地址 |
method | int | 推送时效:0-立即推送 1-定时推送 |
cast_type | int | 推送方式:0-广播推送 1-分组推送 |
platform | int | 推送平台:0-双平台 1-iOS平台 2-android平台 |
created_time | string | 创建时间 |
start_time | string | 推送时间 |
文档更新时间: 2019-09-10 16:19 作者:千帆云