参考文档地址:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421135319
接入概述
接入微信公众平台开发,开发者需要按照如下步骤完成:
1、填写服务器配置
2、验证服务器地址的有效性
3、依据接口文档实现业务逻辑
讲到接口接入就不得不提,服务器实现公众号自定义功能;因为,接口接入是开发的基础。
公众号开发,需要1。申请公众号,2.开发者认证 3,获取公众号开发信息 4.服务器配置启动(接口接入)
这里我只讲下服务器配置(接口接入):
private static final String TOKEN = “immco”;
/**
* 微信接入模块;接入微信公众平台开发第一步
* @param request
* @param response
* @return
* @throws ParseException
* @author lbh
* @throws IOException
* @date 创建时间:2018年1月18日 下午4:13:20
* @parameter
*/
@RequestMapping(value = “/wxServerBridge”, method = RequestMethod.GET)
public void wxServerBridge(HttpServletRequest request,
HttpServletResponse response)
throws ParseException, IOException {
String signature =request.getParameter(“signature”);
String timestamp =request.getParameter(“timestamp”);
String nonce =request.getParameter(“nonce”);
String echostr =request.getParameter(“echostr”);
PrintWriter out = response.getWriter();
if (WXAuthUtil.checkSignature(signature, timestamp, nonce)) {
out.println(echostr);
}
}
/*
* 开发者通过检验signature对请求进行校验(下面有校验方式)。若确认此次GET请求来自微信服务器,请原样返回echostr参数内容,则接入生效,成为开发者成功,否则接入失败。加密/校验流程如下:
1)将token、timestamp、nonce三个参数进行字典序排序 2)将三个参数字符串拼接成一个字符串进行sha1加密 3)开发者获得加密后的字符串可与signature对比,标识该请求来源于微信
* */
public static Boolean checkSignature(String signature,String timestamp ,String nonce){
String[] arr = new String[]{TOKEN,timestamp,nonce};
//1)将token、timestamp、nonce三个参数进行字典序排序
Arrays.sort(arr);
//2)将三个参数字符串拼接成一个字符串进行
StringBuffer content = new StringBuffer();
for(int i=0;i<arr.length;i++){
content.append(arr[i]);
}
//3)sha1加密
String temp = getSha1(content.toString());
String temp1=SHA1.encode(content.toString());
System.out.println(signature);
System.out.println(temp);
System.out.println(temp1);
//4)开发者获得加密后的字符串可与signature对比,标识该请求来源于微信
return temp1.equals(signature);
}
/**
* sha1加密算法工具
* @param str
* @return
* @author lbh
* @date 创建时间:2018年1月18日 下午4:19:42
* @parameter
*/
public static String getSha1(String str){
if (null == str || 0 == str.length()){
return null;
}
char[] hexDigits = { ‘0’, ‘1’, ‘2’, ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, ‘8’, ‘9’,
‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’};
try {
MessageDigest mdTemp = MessageDigest.getInstance(“SHA1”);
mdTemp.update(str.getBytes(“UTF-8”));
byte[] md = mdTemp.digest();
int j = md.length;
char[] buf = new char[j * 2];
int k = 0;
for (int i = 0; i < j; i++) {
byte byte0 = md[i];
buf[k++] = hexDigits[byte0 >>> 4 & 0xf];
buf[k++] = hexDigits[byte0 & 0xf];
}
return new String(buf);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
return null;
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
return null;
}
}
代码完成并部署可以访问的外环境下,微信通过域名可以访问到,这是就可以点击“提交”;如果提示验证通过就证明接口成功;接下来的所有公众开发就可以逐步进行了。
今天的文章微信公众号回复功能怎么开_关注微信公众号分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/84650.html