编程语言
首页 > 编程语言> > Java对接微信公众号发送模板消息推送

Java对接微信公众号发送模板消息推送

作者:互联网

登录微信测试公众号:https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login

登录进入以后,关注测试公众号二维码(测试公众号名称一般是:XXX的微信接口测试号)

然后刷新一下,后面会出来关注人的昵称和测试公众号展示的微信号

新增测试模板模板

在pom.xml文件中引入依赖

<dependency>
  <groupId>com.github.binarywang</groupId>
  <artifactId>weixin-java-mp</artifactId>
  <version>4.0.0</version>
</dependency>

Java代码实现

WxMpTemplateMessage templateMessage = WxMpTemplateMessage.builder()
.toUser(...) //关注者的openId
.templateId(...) //模板ID
.url(...) //点击消息的跳转地址,可以不配置
.build();

templateMessage.addData(new WxMpTemplateData(name1, value1, color2));
templateMessage.addData(new WxMpTemplateData(name2, value2, color2));

wxMpService.getTemplateMsgService().sendTemplateMsg(templateMessage);

代码中toUser:

代码中templateId:

代码中url:配置需要跳转的地址,注意要服务器可以访问外网

代码中name1,value1,color2以此对应配置的模板内容的first.DATA,需要传的值,展示数据的颜色

以此类推~

最后附一下pom依赖的Git地址:https://hub.fastgit.org/Wechat-Group/WxJava

有不明白的欢迎提问,大家一起进步

标签:...,templateMessage,微信,代码,color2,测试,Java,推送,模板
来源: https://blog.csdn.net/enhengguodong/article/details/116589537