这次以文本回复作为案例来讲解Java相关得微信公众号开发。
首先必须要有一个个人微信公众号@H_404_4@
个人微信公众号相关的接口权限有限,不过用于个人学习体验一下足够了,如图:
然后进入微信公众后台,点击基本配置,按照如下操作(点击启用,相当于设置请求url为自己后台的):
设置服务器URL、令牌、消息加解密密钥(这个可以使用自动生成的):
服务器URL至关重要,我在这里设置为我自己的域名http://www.youcongtech.com/wx-api。
这个wx-api就是后面对应的接口(比如我发送某个关键字,返回对应的信息)。
token可以设置复杂点。
效果图@H_404_4@
上面的演示效果来自本人微信公众号,并长期运行稳定没有任何问题
后台路由代码@H_404_4@
package com.blog.springboot.controller;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.blog.springboot.wx.service.WxService;
import com.blog.springboot.wx.util.SignUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@H_404_4@/*@H_404_4@*
* 微信公众号API
* @author youcong
* @date 2019-6-02
@H_404_4@*/@H_404_4@
@RestController
@RequestMapping(@H_404_4@"@H_404_4@/wx_public_api@H_404_4@"@H_404_4@)
@Api(tags @H_404_4@= { 微信公众号api@H_404_4@"@H_404_4@ },description = )
@H_404_4@public@H_404_4@ class@H_404_4@ WxPublicApiController extends AbstractController{
@Autowired
@H_404_4@private@H_404_4@ WxService wxService;
@H_404_4@*
* 微信公众平台服务器配置验证
* @param request
* @param response
@H_404_4@
@GetMapping
@ApiOperation(@H_404_4@微信公众平台服务器配置验证@H_404_4@)
@H_404_4@void@H_404_4@ validate(HttpServletRequest request,HttpServletResponse response) {
@H_404_4@//@H_404_4@ 微信加密签名,signature结合了开发者填写的token参数和请求中的timestamp参数、nonce参数。@H_404_4@
String signature = request.getParameter(signature@H_404_4@);
@H_404_4@ 时间戳@H_404_4@
String timestamp = request.getParameter(timestamp@H_404_4@ 随机数@H_404_4@
String nonce = request.getParameter(nonce@H_404_4@ 随机字符串@H_404_4@
String echostr = request.getParameter(echostr@H_404_4@);
PrintWriter @H_404_4@out@H_404_4@ = null@H_404_4@;
@H_404_4@try@H_404_4@ {
@H_404_4@out@H_404_4@ = response.getWriter();
@H_404_4@ 通过检验signature对请求进行校验,若校验成功则原样返回echostr,否则接入失败@H_404_4@
if@H_404_4@ (SignUtil.checkSignature(signature,timestamp,nonce)) {
@H_404_4@out@H_404_4@.print(echostr);
}
} @H_404_4@catch@H_404_4@ (IOException e) {
e.printStackTrace();
logger.error(e.getMessage());
} @H_404_4@finally@H_404_4@ {
@H_404_4@.close();
@H_404_4@;
}
}
@H_404_4@*
* 关注推送消息
* @param request
* @param response
@H_404_4@
@PostMapping
@ApiOperation(@H_404_4@关注推送消息@H_404_4@)
@H_404_4@ about(HttpServletRequest request,1)"> {
request.setCharacterEncoding(@H_404_4@UTF-8@H_404_4@);
} @H_404_4@ (UnsupportedEncodingException e) {
e.printStackTrace();
logger.error(e.getMessage(),e);
}
response.setContentType(@H_404_4@text/html;charset=UTF-8@H_404_4@);
@H_404_4@ 调用核心业务类接收消息、处理消息@H_404_4@
String respMessage = wxService.newMessageRequest(request);
@H_404_4@ 响应消息@H_404_4@
PrintWriter .print(respMessage);
} @H_404_4@ (IOException e) {
e.printStackTrace();
logger.error(e.getMessage(),e);
} @H_404_4@;
}
}
}@H_404_4@
完整代码@H_404_4@
完整代码已经放到我个人的GitHub仓库,地址为:https://github.com/developers-youcong/blog-springcloud-pro/tree/master/blog-wx-client
这是其中的子项目,功能主要是微信公众平台。
鉴于我个人主要维护的开源项目尚未公开,有很多隐私信息等,所以将其中的微信公众号模块抽取出来放到我的新开源项目blog-springcloud-pro中(此项目目前处于开发中)。
微信公众号模块基本上换上自己的token、appid、appsecret并部署到线上就基本可用了。有任何问题,可留言。