public interface WxMaSubscribeService
限定符和类型 | 方法和说明 |
---|---|
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<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<PubTemplateKeyword> |
getPubTemplateKeyWordsById(String id)
获取模板库某个模板标题下关键词库
详情请见: 获取模板标题下的关键词列表
接口url格式: GET https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatekeywords?
|
PubTemplateTitleListResult |
getPubTemplateTitleList(String[] ids,
int start,
int limit)
获取账号所属类目下的公共模板标题
详情请见: 获取账号所属类目下的公共模板标题
接口url格式: https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatetitles?
|
List<TemplateInfo> |
getTemplateList()
获取当前账号下的个人模板列表
详情请见: 获取当前账号下的个人模板列表
接口url格式: GET https://api.weixin.qq.com/wxaapi/newtmpl/gettemplate?
|
void |
sendSubscribeMsg(WxMaSubscribeMessage subscribeMessage)
发送订阅消息
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.send.html
|
PubTemplateTitleListResult 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<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<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<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
- .void sendSubscribeMsg(WxMaSubscribeMessage subscribeMessage) throws WxErrorException
发送订阅消息 https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.send.html
subscribeMessage
- 订阅消息WxErrorException
- .Copyright © 2024. All rights reserved.