springboot+微信公众号发送模板消息+小程序发送订阅消息

测试号管理:https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index

在开发之前需要做的事情:

1.申请一个公众号测试账号,一分钟就可以申请下来   

2.然后需要一个微信验证token的地址,这个大家可以网上找一下 比较简单。

验证token的代码贴一下

package com.cjkj.message.controller;

import com.cjkj.message.utils.SignUtil;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.PrintWriter;

/**
 * @program: cjkj
 * @description:
 * @author: Mr.Wang
 * @create: 2020-03-25 17:11
 **/
@Controller
@RequestMapping("/wechat")
public class WechatController {

        private s

你可能感兴趣的:(微信公众号发送模板消息,微信小程序发送订阅消息)