官方文档
文档
术语介绍
引入pom
<dependency><groupId>com.github.binarywang</groupId><artifactId>wx-java-cp-spring-boot-starter</artifactId><version>4.5.3.B</version></dependency>
核心代码
推送消息
final WxCpService wxCpService = WxCpConfiguration.getCpService(agentId);if (wxCpService == null) {throw new IllegalArgumentException(String.format("未找到对应agentId=[%d]的配置,请核实!", agentId));}
// https://developer.work.weixin.qq.com/document/10013return wxCpService.getMessageService().send( WxCpMessage.TEXT().content("一条消息内容2222").toUser("xxxx").toParty("2").build());
自建应用
登录 后台 https://work.weixin.qq.com/wework_admin/frame#apps,新建应用
可以获取 AgentId