微信接口校验

1、Servlet

package com.itmayiedu.servlet;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;
import java.util.Map;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.itmayiedu.entity.TestMesgEntity;
import com.itmayiedu.utils.CheCkeUtils;
import com.itmayiedu.utils.MesAgeUtils;

/**
* Servlet implementation class WeiXinServlet
*/
@WebServlet("/WeiXinServlet")
public class WeiXinServlet extends HttpServlet {
private static final long serialVersionUID = 1L;

/**
* @see HttpServlet#HttpServlet()
*/
public WeiXinServlet() {
super();
// TODO Auto-generated constructor stub
}

/**
* get请求,微信接口校验
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String signature = request.getParameter("signature");
String timestamp = request.getParameter("timestamp");
String nonce = request.getParameter("nonce");
String echostr = request.getParameter("echostr");
PrintWriter writer = response.getWriter();
if (CheCkeUtils.cheCkeSignature(signature, timestamp, nonce)) {
writer.write(echostr);
}
}

/**
* post请求,发送文本消息
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
// 接受用户发送消息1、用户发送內容 微信会推送xml消息 将XML转换成map
PrintWriter writer = response.getWriter();
try {
Map<String, String> xmlMap = MesAgeUtils.toXmlMap(request);
System.out.println("xmlMap:" + xmlMap);
String msgType = xmlMap.get("MsgType");
String result = null;
if (msgType.equals("text")) {
TestMesgEntity testMesgEntity = new TestMesgEntity();
testMesgEntity.setToUserName(xmlMap.get("FromUserName"));
testMesgEntity.setFromUserName(xmlMap.get("ToUserName"));
testMesgEntity.setCreateTime(System.currentTimeMillis() + "");
testMesgEntity.setMsgType("text");
String userContent=xmlMap.get("Content");
String content = null;
if(userContent.equals("上海天气")){
content="上海天气,今天最低温度17度,最高温度22度。多云";
}else if(userContent.equals("蚂蚁课堂")){
content="蚂蚁课堂专为喜欢IT爱好者提供免费的教学视频网站 www.itmayiedu.com";
}else{
content="您消息我们已经收到,我们会及时处理的的!谢谢您对蚂蚁课堂的关心。";
}
testMesgEntity.setContent(content);

result = MesAgeUtils.testMessageToXml(testMesgEntity);
}
System.out.println("result:");
System.out.println("result:" + result);
writer.write(result);
} catch (Exception e) {
System.out.println(e.getMessage());
} finally {
writer.close();
}

}

}

2、工具类:

package com.itmayiedu.utils;

import java.security.MessageDigest;
import java.util.Arrays;

public class CheCkeUtils {

private static final String token = "ding";

public static boolean cheCkeSignature(String signature, String timestamp, String nonce)

{
String[] arr = new String[] { token, timestamp, nonce };
// 排序
Arrays.sort(arr);
StringBuffer sf = new StringBuffer();
for (int i = 0; i < arr.length; i++) {
sf.append(arr[i]);
}
// sha1验证
String temp = getSha1(sf.toString());
return temp.equals(signature);
}

public static String getSha1(String str) {
if (str == null || str.length() == 0) {
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 (Exception e) {
// TODO: handle exception
return null;
}
}
}

package com.itmayiedu.utils;

import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.servlet.ServletInputStream;
import javax.servlet.http.HttpServletRequest;

import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

import com.itmayiedu.entity.TestMesgEntity;
import com.thoughtworks.xstream.XStream;

public class MesAgeUtils {

/**
* 将xml转换成map
*
* @param request
* @return
* @throws IOException
* @throws DocumentException
*/
public static Map<String, String> toXmlMap(HttpServletRequest request) throws IOException, DocumentException {
Map<String, String> map = new HashMap<String, String>();
SAXReader saxReader = new SAXReader();
// 获取用户输入的文件流
ServletInputStream inputStream = request.getInputStream();
// 将文件流转换成map
Document doc = saxReader.read(inputStream);
Element root = doc.getRootElement();
List<Element> elements = root.elements();
for (Element element : elements) {
map.put(element.getName(), element.getText());
}
return map;
}

/**
* 将实体类转换成map
*
* @param testMesgEntity
* @return
*/
public static String testMessageToXml(TestMesgEntity testMesgEntity) {

XStream xStream = new XStream();
xStream.alias("xml", testMesgEntity.getClass());
return xStream.toXML(testMesgEntity);
}

}

实体类:

package com.itmayiedu.entity;

public class TestMesgEntity {

private String ToUserName;

private String FromUserName;

private String CreateTime;

private String MsgType;

private String Content;

public String getToUserName() {
return ToUserName;
}

public void setToUserName(String toUserName) {
ToUserName = toUserName;
}

public String getFromUserName() {
return FromUserName;
}

public void setFromUserName(String fromUserName) {
FromUserName = fromUserName;
}

public String getCreateTime() {
return CreateTime;
}

public void setCreateTime(String createTime) {
CreateTime = createTime;
}

public String getMsgType() {
return MsgType;
}

public void setMsgType(String msgType) {
MsgType = msgType;
}

public String getContent() {
return Content;
}

public void setContent(String content) {
Content = content;
}

}

时间: 2024-10-27 12:18:02

微信接口校验的相关文章

java微信接口开发java SpringMVC mybatis 后台框架 集成代码生成器开发利器

获取[下载地址]   QQ: 313596790   [免费支持更新]支持三大数据库 mysql  oracle  sqlsever   更专业.更强悍.适合不同用户群体[新录针对本系统的视频教程,手把手教开发一个模块,快速掌握本系统]A 代码生成器(开发利器);      增删改查的处理类,service层,mybatis的xml,SQL( mysql   和oracle)脚本,   jsp页面 都生成   就不用写搬砖的代码了,生成的放到项目里,可以直接运行B 阿里巴巴数据库连接池druid

java 微信自定义菜单 java微信接口开发 公众平台 SSM redis shiro 多数据源

获取[下载地址]   QQ: 313596790官网 http://www.fhadmin.org/A 调用摄像头拍照,自定义裁剪编辑头像,头像图片色度调节B 集成代码生成器 [正反双向](单表.主表.明细表.树形表,快速开发利器)+快速表单构建器 freemaker模版技术 ,0个代码不用写,生成完整的一个模块,带页面.建表sql脚本,处理类,service等完整模块C 集成阿里巴巴数据库连接池druid  数据库连接池  阿里巴巴的 druid.Druid在监控.可扩展性.稳定性和性能方面都

asp.net C# 实现微信接口权限开发类

当前微信接口类已实现以下接口,代码上如果不够简洁的,请自行处理. 1.获取access_token 2.获取用户基本信息 3.生成带参数二维码 4.新增永久素材 5.新增临时素材 6.发送微信模版 7.网页授权获取用户基本信息 8.分享朋友圈 关于需要使用poststr字符串可以在asp.net 页面进行poststr配置 //获取素材列表 var jsonitem = new { type = "image", offset = 0, count = 999 }; JavaScrip

ecshop微信接口基础认识

ecshop微信接口基础认识,当你要学习ecshop和微信整合的时候,你就必须研究ecshop的数据结构对接以及微信数据接口的基本知识.我们知道微信其实就是通过有效的消息推送,用JSON格式的数据或者是XML格式的数据,推送到你的api上面去显示,其实就是一段XML内容.消息推送的话. ecshop和微信对接的基础接口,就是只是包含简单的消息推送接口,以及操作界面的界面定义接口,其他相关关注接口.都需要开通高级接口,论证接口才能做.发送任何消息之前,必须获取token以及验证access_tok

Force.com - 微信接口后台开发与配置

为寻找国内免费云资源作为微信后台,花了一天时间试用SinaAppEngine(SAE),调试太不方便用户体验差.新浪作为媒体公司技术功底经不起考验,亚马逊能推出AWS,新浪还不行!更好选项是百度BaiduAppEngine(BAE),但最近尽然开始收费,还是安心回到force.com,至少老外承诺免费的东西一直免费且可靠. 第一步,申请force.com账号,请至developer.force.com申请,如是www.salesforce.com申请下来的是作为客户的账号,不适合开发人员:第二步

微信接口开发之前准备工作

我是一名.net码农,最近项目需要用到微信接口开发,苦于微信官方没有.net示例,个人表示非常无解微信竟然这么无视.net的存在(让我哭会) .难道做为.net就不能开发好微信接口了吗?反问了一下,上网查了查资料,答案是否定的,也有许多大神提供很好的例子.在这里谢谢各位前辈的辛苦了(膜拜).在此,我也开始踏入了微信接口开发的工作中了,也想学习大神们的无私,特此在这里共享出我的点点滴滴,与码友一同成长. 先说说我的开发前准备吧! 1.申请注册一个公众平台(哈哈,这是必须的),如果你想要有更大更厉害

java微信接口之四—上传素材

一.微信上传素材接口简介 1.请求:该请求是使用post提交地址为: https://api.weixin.qq.com/cgi-bin/media/uploadnews?access_token=ACCESS_TOKEN 其中ACCESS_TOKEN是我们动态获取的. 发送的数据: {"articles":[ { "thumb_media_id":"qI6_Ze_6PtV7svjolgs-rN6stStuHIjs9_DidOHaj0Q-mwvBelOXC

java微信接口之五—消息分组群发

一.微信消息分组群发接口简介 1.请求:该请求是使用post提交地址为: https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=ACCESS_TOKEN   其中ACCESS_TOKEN是我们动态获取的.   发送的数据:(这里使用图文消息示例) { "filter":{ "group_id":"2" }, "mpnews":{ "me

练习题(登陆-进度条-微信接口判断qq-微信接口判断列车时刻表-)

1.写一个用户的登陆注册的界面,用户的密码用hashlib加密存在文件中,登陆时候,用户的密码要和文件中的密码一致才行 def sha(password): #加密函数 passwd = hashlib.sha256(bytes('wxtrkbc', encoding='utf-8')) passwd.update(bytes(password,encoding='utf-8')) return passwd.hexdigest() def register(user,passwd): #注册函