# 获取类目名称信息

调试工具

接口应在服务器端调用,详细说明参见服务端API

# 接口说明

# 接口英文名

getAllCategoryName

# 功能描述

接口可获取已设置的二级类目及用于代码审核的可选三级类目。使用过程中如遇到问题,可在开放平台服务商专区发帖交流。

# 调用方式

# HTTPS 调用


GET https://api.weixin.qq.com/wxa/get_category?access_token=ACCESS_TOKEN 

# 第三方调用

  • 调用方式以及出入参和HTTPS相同,仅是调用的token不同

  • 该接口所属的权限集id为:18

  • 服务商获得其中之一权限集授权后,可通过使用authorizer_access_token代商家进行调用

# 请求参数

属性 类型 必填 说明
access_token string 接口调用凭证,该参数为 URL 参数,非 Body 参数。使用authorizer_access_token

# 返回参数

属性 类型说明
errcode number 返回码
errmsg string 错误信息
category_list array<object> 类目信息列表
属性 类型 说明
first_class string 一级类目
second_class string 二级类目
third_class string 三级类目
first_id number 一级类目id
second_id number 二级类目id
third_id number 三级类目id

# 调用示例

示例说明: HTTPS请求

# 请求数据示例


GET https://api.weixin.qq.com/wxa/get_category?access_token=ACCESS_TOKEN 

# 返回数据示例


{
	"errcode":0,
	"errmsg": "ok",
	"category_list" : [
		{
			"first_class":"工具",
			"second_class":"备忘录",
			"first_id":1,
			"second_id":2,
		}
		{
			"first_class":"教育",
			"second_class":"学历教育",
			"third_class":"高等",
			"first_id":3,
			"second_id":4,
			"third_id":5,
		}
	]
} 

# 错误码

错误码 错误码取值 解决方案
40001 invalid credential  access_token isinvalid or not latest 获取 access_token 时 AppSecret 错误,或者 access_token 无效。请开发者认真比对 AppSecret 的正确性,或查看是否正在为恰当的公众号调用接口
43001 require GET method 需要 GET 请求