微信公众平台开发--微信服务器post消息体接收

(一)消息类型和消息格式

所有的和微信服务器进行沟通基本都是通过post 消息体完成的,首先我们了解下消息体的类型,大致类型有两种:

普通消息类型:文本消息、图片消息、语音消息、视频消息、小视频消息、地理位置消息、链接消息

事件消息类型:关注/取消关注事件、扫描带参数二维码事件、上报地理位置事件、自定义菜单事件、点击菜单拉取消息时的事件推送、点击菜单跳转链接时的事件推送

消息类型:微信服务端推送的所有消息体的类型格式都是 xml 格式;

(二)消息重试机制

微信服务器在五秒内收不到响应会断掉连接,并且重新发起请求,总共重试三次。假如服务器无法保证在五秒内处理并回复,可以直接回复空串,微信服务器不会对此作任何处理,并且不会发起重试,但是这里后期可以使用【客服消息接口】去完成消息再次推送。

(三)消息接收处理

微信的消息体采用 xml 格式, MessageUtil 用于做消息格式的处理,大致代码如下:
public class MessageUtil {


	/**
	 * 返回消息类型:文本
	 */
	public static final String RESP_MESSAGE_TYPE_TEXT = "text";


	/**
	 * 返回消息类型:音乐
	 */
	public static final String RESP_MESSAGE_TYPE_MUSIC = "music";


	/**
	 * 返回消息类型:图文
	 */
	public static final String RESP_MESSAGE_TYPE_NEWS = "news";


	/**
	 * 返回消息类型:图片
	 */
	public static final String RESP_MESSAGE_TYPE_Image = "image";


	/**
	 * 返回消息类型:语音
	 */
	public static final String RESP_MESSAGE_TYPE_Voice = "voice";


	/**
	 * 返回消息类型:视频
	 */
	public static final String RESP_MESSAGE_TYPE_Video = "video";


	/**
	 * 请求消息类型:文本
	 */
	public static final String REQ_MESSAGE_TYPE_TEXT = "text";


	/**
	 * 请求消息类型:图片
	 */
	public static final String REQ_MESSAGE_TYPE_IMAGE = "image";


	/**
	 * 请求消息类型:链接
	 */
	public static final String REQ_MESSAGE_TYPE_LINK = "link";


	/**
	 * 请求消息类型:地理位置
	 */
	public static final String REQ_MESSAGE_TYPE_LOCATION = "location";


	/**
	 * 请求消息类型:音频
	 */
	public static final String REQ_MESSAGE_TYPE_VOICE = "voice";


	/**
	 * 请求消息类型:视频
	 */
	public static final String REQ_MESSAGE_TYPE_VIDEO = "video";


	/**
	 * 请求消息类型:推送
	 */
	public static final String REQ_MESSAGE_TYPE_EVENT = "event";


	/**
	 * 事件类型:subscribe(订阅)
	 */
	public static final String EVENT_TYPE_SUBSCRIBE = "subscribe";


	/**
	 * 事件类型:unsubscribe(取消订阅)
	 */
	public static final String EVENT_TYPE_UNSUBSCRIBE = "unsubscribe";


	/**
	 * 事件类型:CLICK(自定义菜单点击事件)
	 */
	public static final String EVENT_TYPE_CLICK = "CLICK";


	/**
	 * 事件类型:VIEW(自定义菜单URl视图)
	 */
	public static final String EVENT_TYPE_VIEW = "VIEW";


	/**
	 * 事件类型:LOCATION(上报地理位置事件)
	 */
	public static final String EVENT_TYPE_LOCATION = "LOCATION";


	/**
	 * 事件类型:LOCATION(上报地理位置事件)
	 */
	public static final String EVENT_TYPE_SCAN = "SCAN";


	/**
	 * @Description: 解析微信发来的请求(XML)
	 * @param @param request
	 * @param @return
	 * @param @throws Exception
	 * @author dapengniao
	 * @date 2016年3月7日 上午10:04:02
	 */
	@SuppressWarnings("unchecked")
	public static Map<String, String> parseXml(HttpServletRequest request)
			throws Exception {
		// 将解析结果存储在HashMap中
		Map<String, String> map = new HashMap<String, String>();
		// 从request中取得输入流
		InputStream inputStream = request.getInputStream();
		// 读取输入流
		SAXReader reader = new SAXReader();
		Document document = reader.read(inputStream);
		// 得到xml根元素
		Element root = document.getRootElement();
		// 得到根元素的所有子节点
		List<Element> elementList = root.elements();


		// 遍历所有子节点
		for (Element e : elementList)
			map.put(e.getName(), e.getText());


		// 释放资源
		inputStream.close();
		inputStream = null;


		return map;
	}


	/**
	 * @Description: 文本消息对象转换成xml
	 * @param @param textMessage
	 * @param @return
	 * @author dapengniao
	 * @date 2016年3月8日 下午4:13:22
	 */
	public static String textMessageToXml(TextMessage textMessage) {
		xstream.alias("xml", textMessage.getClass());
		return xstream.toXML(textMessage);
	}


	/**
	 * @Description: 图文消息对象转换成xml
	 * @param @param newsMessage
	 * @param @return
	 * @author dapengniao
	 * @date 2016年3月8日 下午4:14:09
	 */
	public static String newsMessageToXml(NewsMessage newsMessage) {
		xstream.alias("xml", newsMessage.getClass());
		xstream.alias("item", new Article().getClass());
		return xstream.toXML(newsMessage);
	}


	/**
	 * @Description: 图片消息对象转换成xml
	 * @param @param imageMessage
	 * @param @return
	 * @author dapengniao
	 * @date 2016年3月9日 上午9:25:51
	 */
	public static String imageMessageToXml(ImageMessage imageMessage) {
		xstream.alias("xml", imageMessage.getClass());
		return xstream.toXML(imageMessage);
	}


	/**
	 * @Description: 语音消息对象转换成xml
	 * @param @param voiceMessage
	 * @param @return
	 * @author dapengniao
	 * @date 2016年3月9日 上午9:27:26
	 */
	public static String voiceMessageToXml(VoiceMessage voiceMessage) {
		xstream.alias("xml", voiceMessage.getClass());
		return xstream.toXML(voiceMessage);
	}


	/**
	 * @Description: 视频消息对象转换成xml
	 * @param @param videoMessage
	 * @param @return
	 * @author dapengniao
	 * @date 2016年3月9日 上午9:31:09
	 */
	public static String videoMessageToXml(VideoMessage videoMessage) {
		xstream.alias("xml", videoMessage.getClass());
		return xstream.toXML(videoMessage);
	}


	/**
	 * @Description: 音乐消息对象转换成xml
	 * @param @param musicMessage
	 * @param @return
	 * @author dapengniao
	 * @date 2016年3月8日 下午4:13:36
	 */
	public static String musicMessageToXml(MusicMessage musicMessage) {
		xstream.alias("xml", musicMessage.getClass());
		return xstream.toXML(musicMessage);
	}


	/**
	 * 对象到xml的处理
	 */
	private static XStream xstream = new XStream(new XppDriver() {
		public HierarchicalStreamWriter createWriter(Writer out) {
			return new PrettyPrintWriter(out) {
				// 对所有xml节点的转换都增加CDATA标记
				boolean cdata = true;


				@SuppressWarnings("rawtypes")
				public void startNode(String name, Class clazz) {
					super.startNode(name, clazz);
				}


				protected void writeText(QuickWriter writer, String text) {
					if (cdata) {
						writer.write("<![CDATA[");
						writer.write(text);
						writer.write("]]>");
					} else {
						writer.write(text);
					}
				}
			};
		}
	});
}

 在这个方法体里需要用到部分依赖,需要在pom 文件加入如下部分:

<!-- xml -->
<dependency>
    <groupId>org.apache.directory.studio</groupId>
    <artifactId>org.dom4j.dom4j</artifactId>
    <version>1.6.1</version>
</dependency>
 
<dependency>
    <groupId>com.thoughtworks.xstream</groupId>
    <artifactId>xstream</artifactId>
    <version>1.4.8</version>
</dependency>

然后将我们的WechatSecurity Controller 中的 post 方法修改为如下,用于做消息的接收和处理:

@RequestMapping(value = "security", method = RequestMethod.POST)
    // post 方法用于接收微信服务端消息
    public void DoPost(HttpServletRequest request,HttpServletResponse response) {
        System.out.println("这是 post 方法!");
        try{
        Map<String, String> map=MessageUtil.parseXml(request);
        System.out.println("============================="+map.get("Content"));
        }catch(Exception e){
            logger.error(e,e);
        }
    }

至此,代码编辑完成。

开启开发者模式;打包发布系统;在公众号上发送消息,在们的后台就能看到我们的消息体进入并解析成功了,截图大致如下:


猜你喜欢

转载自blog.csdn.net/zyy_hbcz/article/details/79228156