简要描述:

抖音商品分类

请求域名:

  • http://xx.com

请求URL:

GET/plugin.decorate.admin.decorate-common.get-tiktok-cps-category

参数:

参数名 是否必须 类型 说明
page int 分页

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "success",
    "data": {
        "current_page": 1,
        "data": [
            {
                "cate_id": 20000,
                "parent_id": 0,
                "name": "3C数码配件",
                "has_many_children": [
                    {
                        "cate_id": 20126,
                        "parent_id": 20000,
                        "name": "直播/摄影周边设备",
                        "has_many_children": [
                            {
                                "cate_id": 22203,
                                "parent_id": 20126,
                                "name": "背包/箱具"
                            },
                            {
                                "cate_id": 33573,
                                "parent_id": 33503,
                                "name": "数码相机电池"
                            }
                        ]
                    }
                ]
            }
        ],
        "first_page_url": "https://dev15.yunzmall.com/admin/shop?page=1",
        "from": 1,
        "last_page": 9220,
        "last_page_url": "https://dev15.yunzmall.com/admin/shop?page=9220",
        "next_page_url": "https://dev15.yunzmall.com/admin/shop?page=2",
        "path": "https://dev15.yunzmall.com/admin/shop",
        "per_page": 1,
        "prev_page_url": null,
        "to": 1,
        "total": 9220
}

错误时返回:

{
    "result": 0,
    "msg": "",
    "data": []
}

返回参数说明:

参数名 类型 说明
total int 数据总条数
per_page int 每页显示多少条数据
current_page int 当前页

data参数说明:

参数名 类型 说明
cate_id int 分类ID
name string 分类名称
parent_id int 父级id
has_many_children array 子分类数组,数据结构和父级一样

备注:

  • 更多返回错误代码请看首页的错误代码描述