新建页面统计
拥有此API的权限集 |
---|
页面统计管理-增删改 |
请求方式及url
- 请求方式:
POST
- 请求头:
Content-Type:application/json
- 接口地址:
https://api.xiaoe-tech.com/xe.page_stat.save/1.0.0
- 频率限制:
10秒500次
在线调试工具
请求
响应
请求参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 专属token |
channel_name | 是 | string | 页面统计名称 |
places_id | 是 | int | 投放渠道id |
channel_page_type | 是 | int | 页面类型,默认传知识商品:0,实物商品:17 |
resource_type | 是 | int | 资源类型 |
resource_id | 是 | string | 资源id |
resource_name | 是 | string | 资源名称 |
resource_url | 是 | string | 资源Url |
img_url | 否 | string | 资源图片Url |
channel_id | 否 | string | 页面统计id |
请求示例
{
"access_token":"xe_xxxx",
"channel_name": "xxx",
"places_id": 0,
"channel_page_type": 0,
"resource_type": 6,
"resource_id": "xxx",
"resource_name": "老化 / 色斑专题",
"resource_url": "https://xxx",
}
返回参数
参数名 | 类型 | 说明 |
---|---|---|
code | int | 返回码 |
msg | int | 返回信息 |
data | object | 返回数据 |
data.share_url | string | 推广短链接 |
data.channel_id | string | 页面统计id |
返回示例
{
"code": 0,
"msg": "成功",
"data": {
"share_url": "https://xxx",
"channel_id": xxx
}
}