subscribeMessage.getCategory

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

本接口支持云调用。需开发者工具版本 >= 1.02.1904090(最新稳定版下载),wx-server-sdk >= 0.4.0

获取小程序账号的类目

调用方式:

HTTPS 调用

请求地址

  1. GET https://api.weixin.qq.com/wxaapi/newtmpl/getcategory?access_token=ACCESS_TOKEN

请求参数

属性类型默认值必填说明
access_tokenstring接口调用凭证

返回的 JSON 数据包

属性类型说明
errcodenumber错误码
errmsgstring错误信息
dataArray.<Object>类目列表

data 的结构

属性类型说明
idnumber类目id,查询公共库模版时需要
namestring类目的中文名

响应示例

  1. {
  2. "errcode": 0,
  3. "errmsg": "ok",
  4. "data": [
  5. {
  6. "id": 616,
  7. "name": "公交"
  8. }
  9. ]
  10. }

云调用

云调用是小程序·云开发提供的在云函数中调用微信开放接口的能力,需要在云函数中通过 wx-server-sdk 使用。

接口方法

  1. openapi.subscribeMessage.getCategory

需在 config.json 中配置 subscribeMessage.getCategory API 的权限,详情

请求示例

  1. const cloud = require('wx-server-sdk')
  2. cloud.init({
  3. env: cloud.DYNAMIC_CURRENT_ENV,
  4. })
  5. exports.main = async (event, context) => {
  6. try {
  7. const result = await cloud.openapi.subscribeMessage.getCategory({})
  8. return result
  9. } catch (err) {
  10. return err
  11. }
  12. }

响应示例

  1. {
  2. "errCode": 0,
  3. "errMsg": "openapi.subscribeMessage.getCategory:ok",
  4. "data": [
  5. {
  6. "id": 616,
  7. "name": "公交"
  8. }
  9. ]
  10. }