# 获取店铺的商品分类
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/store/get_shopcat?access_token=xxxxxxxxx
# 请求参数示例
{}
# 回包示例
{
"errcode": 0,
"errmsg":"ok",
"shopcat_list":
[
{
"shopcat_id": 123,
"shopcat_name": "食品",
"f_shopcat_id": 0,
"cat_level": 1
},
...
]
}
# 请求参数说明
无
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
shopcat_list[].shopcat_id | number | 分类ID |
shopcat_list[].shopcat_name | string | 分类名称 |
shopcat_list[].f_shopcat_id | number | 父分类ID |
shopcat_list[].cat_level | number | 分类层级 |
# 返回码
返回码 | 错误类型 |
---|---|
-1 | 系统异常 |
-2 | token太长 |