公司的项目,通知信息打算接入企业微信通知。提前做下实验。
JDK 21
SpringBoot 3.1.5
weixin-java-cp 4.5.0
hutool-all 5.8.23
jedis 5.1.0
说明:暂时只是一个springboot小demo,后续根据项目会有组件和结构的修改。
代码比较简单,配置好参数直接调用即可。
这里全部贴到这里,后面会讲解每一步所需要的参数来源及怎么配置。
<properties>
<java.version>21java.version>
<snakeyaml.version>2.2snakeyaml.version>
<jakarta.validation-api.version>3.0.2jakarta.validation-api.version>
<hibernate-validator.version>8.0.1.Finalhibernate-validator.version>
<fastjson.version>2.0.43fastjson.version>
<weixin-java-cp.version>4.5.0weixin-java-cp.version>
<hutool-all.version>5.8.23hutool-all.version>
<jedis.version>5.1.0jedis.version>
properties>
<dependencies>
<dependency>
<groupId>cn.hutoolgroupId>
<artifactId>hutool-allartifactId>
<version>${hutool-all.version}version>
dependency>
<dependency>
<groupId>redis.clientsgroupId>
<artifactId>jedisartifactId>
<version>${jedis.version}version>
dependency>
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-webartifactId>
dependency>
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-configuration-processorartifactId>
<optional>trueoptional>
dependency>
<dependency>
<groupId>org.projectlombokgroupId>
<artifactId>lombokartifactId>
<optional>trueoptional>
dependency>
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-testartifactId>
<scope>testscope>
dependency>
<dependency>
<groupId>com.github.binarywanggroupId>
<artifactId>weixin-java-cpartifactId>
<version>${weixin-java-cp.version}version>
dependency>
<dependency>
<groupId>jakarta.validationgroupId>
<artifactId>jakarta.validation-apiartifactId>
<version>${jakarta.validation-api.version}version>
dependency>
<dependency>
<groupId>org.hibernate.validatorgroupId>
<artifactId>hibernate-validatorartifactId>
<version>${hibernate-validator.version}version>
dependency>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>fastjsonartifactId>
<version>${fastjson.version}version>
dependency>
dependencies>
@Data
@Component
@ConfigurationProperties(value = "wechat2")
public class WechatConfig {
/**
* 要发送消息的应用的两个字段
*/
@Value("${wechat2.agentid}")
private Integer agentId;
/**
*
*/
@Value("${wechat2.secret}")
private String secret;
/**
* 企业id
*/
@Value("${wechat2.corpid}")
private String corpId;
/**
* 用于访问redis的密码,没设置就不需要这个字段
*/
@Value("${wechat2.redis-pwd}")
private String redisPwd;
}
@Slf4j
@Component
public class WechatConfigUtil {
@Resource
private WechatConfig wechatConfig;
/**
* 配置企业微信服务
*
* @return -
*/
public WxCpService wxCpService() {
WxCpService wxCpService = new WxCpServiceImpl();
WxCpDefaultConfigImpl config = new WxCpDefaultConfigImpl();
config.setAgentId(wechatConfig.getAgentId());
config.setCorpSecret(wechatConfig.getSecret());
config.setCorpId(wechatConfig.getCorpId());
resetTokenAndJsApi(wxCpService, config);
return wxCpService;
}
/**
* 重置token
*
* @param wxCpService -
* @param wxCpDefaultConfig -
*/
public void resetTokenAndJsApi(WxCpService wxCpService, WxCpDefaultConfigImpl wxCpDefaultConfig) {
JedisPool jedisPool = new JedisPool();
Jedis jedis = jedisPool.getResource();
if (StringUtils.isNotBlank(wechatConfig.getRedisPwd())) {
jedis.auth(wechatConfig.getRedisPwd());
}
wxCpService.setWxCpConfigStorage(wxCpDefaultConfig);
String wxAccessToken = "wx" + wechatConfig.getAgentId();
// 根据应用id获取对应token
String json = jedis.get(wxAccessToken);
if (!StringUtils.isEmpty(json)) {
wxCpDefaultConfig = JSON.parseObject(json, WxCpDefaultConfigImpl.class);
}
// token到期
if (wxCpDefaultConfig.isAccessTokenExpired()) {
try {
String accessToken;
accessToken = wxCpService.getAccessToken(false);
wxCpDefaultConfig.setAccessToken(accessToken);
} catch (WxErrorException e) {
log.error(e.getMessage());
}
}
// 缓存token
jedis.set(wxAccessToken, JSON.toJSONString(wxCpDefaultConfig));
jedis.close();
}
}
@Slf4j
@AllArgsConstructor
@NoArgsConstructor
@Component
public class SendWxCpMsg {
@Autowired
private WechatConfigUtil wechatConfigUtil;
public void sendToWxCp(String username) {
// 微信消息对象
WxCpMessageServiceImpl wxCpMessageService = new WxCpMessageServiceImpl(wechatConfigUtil.wxCpService());
WxCpMessage wxCpMessage = new WxCpMessage();
wxCpMessage.setSafe("0");
// 设置消息形式,这里设置为卡片消息
wxCpMessage.setMsgType("textcard");
var time = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss"));
// 设置发送用户
wxCpMessage.setToUser(username);
// 发送的标题
wxCpMessage.setTitle("通知标题-TEST");
// 发送内容
wxCpMessage.setDescription("祝新年快乐,幸福安康!"
+ "\n" + "当前时间为:"
+ time + "\n"
+ "点击下方领取祝福");
// 设置跳转url
wxCpMessage.setUrl("https://developer.work.weixin.qq.com/community/question");
wxCpMessage.setBtnTxt("前往");
try {
// 发送消息
WxCpMessageSendResult send = wxCpMessageService.send(wxCpMessage);
log.info("send result:{}", send);
} catch (WxErrorException e) {
log.error("发送信息接口调用出错: {}", e.getMessage());
}
}
}
@RestController
public class MsgSendController {
@Resource
private SendWxCpMsg sendWxCpMsg;
@GetMapping("/send")
private void send() {
sendWxCpMsg.sendToWxCp("Xxxxxx.Xxx");
}
}
wechat2:
corpid: xxxxxxx1
agentid: 1000002
secret: xxxxxxx2
redis-pwd:
到这里,基本的配置已经OK,可以跑下代码。
【错误信息】:错误代码:60020, 错误信息:访问ip不在白名单之中;请确认访问ip是否在服务商白名单IP列表,微信原始报文:{"errcode":60020,"errmsg":"not allow to access from your ip, hint: [170201673442683], from ip: xxx.7xx.xxx.10, more info at https://open.work.weixin.qq.com/devtool/query?e=60020"}
没有配置可信域名
这里如何配置?
见官网:设置可信域名时,提示“检查域名所有权不通过”
注意:它这里必须要有域名可以公网访问,必须要企业微信能调通,不然不会通过的。
OK,也就是到这里,就终止了实验。
后面公司申请流程通过之后,拿到公司域名再来实验,bye。