企业微信 企业内部开发 学习笔记

官方文档

文档
术语介绍

引入pom

        <dependency>
            <groupId>com.github.binarywanggroupId>
            <artifactId>wx-java-cp-spring-boot-starterartifactId>
            <version>4.5.3.Bversion>
        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,新建应用

企业微信 企业内部开发 学习笔记_第1张图片
可以获取 AgentId

你可能感兴趣的:(Java项目,企业微信,学习,笔记)