Skip to content
ouzan-wr edited this page Jan 4, 2022 · 5 revisions

更多使用用例可参考单元测试类me.chanjar.weixin.mp.api.impl.WxMpUserTagServiceImplTest

创建标签

WxUserTag res = this.wxService.getUserTagService().tagCreate(tagName);

获得标签列表

List<WxUserTag> res = this.wxService.getUserTagService().tagGet();

更新标签名

Boolean res = this.wxService.getUserTagService().tagUpdate(tagId, tagName);

删除指定标签

Boolean res = this.wxService.getUserTagService().tagDelete(tagId);
Clone this wiki locally