public interface WxMaSubscribeService
| 限定符和类型 | 接口和说明 |
|---|---|
static class |
WxMaSubscribeService.CategoryData |
static class |
WxMaSubscribeService.PubTemplateKeyword |
static class |
WxMaSubscribeService.TemplateInfo |
| 限定符和类型 | 字段和说明 |
|---|---|
static String |
GET_CATEGORY_URL
获取小程序账号的类目
|
static String |
GET_PUB_TEMPLATE_KEY_WORDS_BY_ID_URL
获取模板标题下的关键词列表.
|
static String |
GET_PUB_TEMPLATE_TITLE_LIST_URL
获取模板标题下的关键词列表.
|
static String |
TEMPLATE_ADD_URL
组合模板并添加至帐号下的个人模板库.
|
static String |
TEMPLATE_DEL_URL
删除帐号下的某个模板.
|
static String |
TEMPLATE_LIST_URL
获取当前帐号下的个人模板列表.
|
| 限定符和类型 | 方法和说明 |
|---|---|
String |
addTemplate(String id,
List<Integer> keywordIdList,
String sceneDesc)
组合模板并添加至帐号下的个人模板库
详情请见: 获取小程序模板库标题列表
接口url格式: POST https://api.weixin.qq.com/wxaapi/newtmpl/addtemplate?
|
boolean |
delTemplate(String templateId)
删除帐号下的某个模板
详情请见: 删除帐号下的个人模板
接口url格式: POST https://api.weixin.qq.com/wxaapi/newtmpl/deltemplate?
|
List<WxMaSubscribeService.CategoryData> |
getCategory()
获取小程序账号的类目
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.getCategory.html
GET https://api.weixin.qq.com/wxaapi/newtmpl/getcategory?
|
List<WxMaSubscribeService.PubTemplateKeyword> |
getPubTemplateKeyWordsById(String id)
获取模板库某个模板标题下关键词库
详情请见: 获取模板标题下的关键词列表
接口url格式: GET https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatekeywords?
|
WxMaPubTemplateTitleListResult |
getPubTemplateTitleList(String[] ids,
int start,
int limit)
获取帐号所属类目下的公共模板标题
详情请见: 获取帐号所属类目下的公共模板标题
接口url格式: https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatetitles?
|
List<WxMaSubscribeService.TemplateInfo> |
getTemplateList()
获取当前帐号下的个人模板列表
详情请见: 获取当前帐号下的个人模板列表
接口url格式: GET https://api.weixin.qq.com/wxaapi/newtmpl/gettemplate?
|
static final String GET_PUB_TEMPLATE_TITLE_LIST_URL
static final String GET_PUB_TEMPLATE_KEY_WORDS_BY_ID_URL
WxMaPubTemplateTitleListResult getPubTemplateTitleList(String[] ids, int start, int limit) throws WxErrorException
获取帐号所属类目下的公共模板标题 详情请见: 获取帐号所属类目下的公共模板标题 接口url格式: https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatetitles?access_token=ACCESS_TOKEN
ids - 类目 id,多个用逗号隔开limit - 用于分页,表示拉取 limit 条记录。最大为 30。start - 用于分页,表示从 start 开始。从 0 开始计数。WxErrorException - .List<WxMaSubscribeService.PubTemplateKeyword> getPubTemplateKeyWordsById(String id) throws WxErrorException
获取模板库某个模板标题下关键词库 详情请见: 获取模板标题下的关键词列表 接口url格式: GET https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatekeywords?access_token=ACCESS_TOKEN
id - 模板标题 id,可通过接口获取WxErrorException - .String addTemplate(String id, List<Integer> keywordIdList, String sceneDesc) throws WxErrorException
组合模板并添加至帐号下的个人模板库 详情请见: 获取小程序模板库标题列表 接口url格式: POST https://api.weixin.qq.com/wxaapi/newtmpl/addtemplate?access_token=ACCESS_TOKEN
id - 模板标题 id,可通过接口获取,也可登录小程序后台查看获取keywordIdList - 模板关键词列表sceneDesc - 服务场景描述,15个字以内WxErrorException - .List<WxMaSubscribeService.TemplateInfo> getTemplateList() throws WxErrorException
获取当前帐号下的个人模板列表 详情请见: 获取当前帐号下的个人模板列表 接口url格式: GET https://api.weixin.qq.com/wxaapi/newtmpl/gettemplate?access_token=ACCESS_TOKEN
WxErrorException - .boolean delTemplate(String templateId) throws WxErrorException
删除帐号下的某个模板 详情请见: 删除帐号下的个人模板 接口url格式: POST https://api.weixin.qq.com/wxaapi/newtmpl/deltemplate?access_token=ACCESS_TOKEN
templateId - 要删除的模板idWxErrorException - .List<WxMaSubscribeService.CategoryData> getCategory() throws WxErrorException
获取小程序账号的类目 https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.getCategory.html GET https://api.weixin.qq.com/wxaapi/newtmpl/getcategory?access_token=ACCESS_TOKEN
WxErrorException - .Copyright © 2020. All rights reserved.