最近在搞小程序和微信公众号开发。 这章介绍token验证。公众号接入
废话不多说。
工具
1.需要一个公众号 私人订阅号 就行。
2.成为开发者
3.ngrok 这个主要用来 调试 作用是把你的内网 映射到公网中 使用方法本文会介绍。简单。
4.开发工具 我这eclispe
一.框架搭建。
这是项目结构图
需要注意的地方是 WxBbotApplication 在项目中位置尽量比你的controller级别包的位置 外层。
这样才能起作用。
其他的不注重介绍
我的是springboot , 都行
只要项目能运行就好!!(可以先用hello world 测试)
二.接下来我们来配置 与公众号关联的一步!!(就2个类)
public class WexinController {
@RequestMapping(value="/wexin" ,method=RequestMethod.GET)
protected void get(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// get方法主要处理公众号接入部分
String signature=request.getParameter("signature");
String timestamp=request.getParameter("timestamp");
String nonce=reque