1.设置分组分类
接口
POST https://open.jisuapp.cn/pc/Category/setgroupcategory
请求参数说明
Content-Type: application/x-www-form-urlencoded
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | String | Y | 用户授权的唯一票据 |
group_id | string | Y | 分组id |
category_id | array | Y | 分类id |
请求参数说明
category_id是分类id,是一个数组,示例如下:
'category_id' => array(
0 => 6080,
1 => 6081,
),
返回参数
参数 | 类型 | 说明 |
---|---|---|
status | int | 状态码 0成功 1失败 |
data | string | 说明 |
参数返回示例
{
"status": 0,
"data": "保存成功" ,
}