# 获取类目详情
多次调用该接口分别拿到一,二,三级类目,如果某个二级类目下的三级类目是空,则说明这个二级类目下的所有三级类目都需要到shop.weixin.qq.com申请资质
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/category/get?access_token=xxxxxxxxx
# 请求参数示例
{
"f_cat_id": 0
}
# 回包示例
{
"errcode": 0,
"errmsg": "ok",
"cat_list":
[
{
"cat_id": 1,
"f_cat_id": 0,
"name": "服饰"
},
{
"cat_id": 2,
"f_cat_id": 0,
"name": "鞋帽"
}
]
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
f_cat_id | number | 是 | 父类目ID,可先填0获取根部类目 |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
cat_list[].cat_id | number | 类目ID |
cat_list[].f_cat_id | number | 类目父ID |
cat_list[].name | string | 类目名称 |
# 返回码
返回码 | 错误类型 |
---|---|
-1 | 系统异常 |
-2 | token太长 |
9401020 | 参数有误 |
9401021 | 无权限调用该api |