官方文档
文档
术语介绍
引入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/10013
return wxCpService.getMessageService().send( WxCpMessage.TEXT().content("一条消息内容2222")
.toUser("xxxx").toParty("2")
.build());
自建应用
登录 后台 https://work.weixin.qq.com/wework_admin/frame#apps,新建应用
可以获取 AgentId文章来源:https://www.toymoban.com/news/detail-639195.html
配置服务器地址
文章来源地址https://www.toymoban.com/news/detail-639195.html
到了这里,关于企业微信 企业内部开发 学习笔记的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!