欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信公众帐号开发教程之图文消息全攻略

程序员文章站 2024-03-11 15:08:07
引言及内容概要 已经有几位读者抱怨"柳峰只用到文本消息作为示例,从来不提图文消息,都不知道图文消息该如何使用",好吧,我错了,原本以为把基础api封装完、框架搭建好,再给...

引言及内容概要

已经有几位读者抱怨"柳峰只用到文本消息作为示例,从来不提图文消息,都不知道图文消息该如何使用",好吧,我错了,原本以为把基础api封装完、框架搭建好,再给出一个文本消息的使用示例,大家就能够照猫画虎的,或许是因为我的绘画功底太差,画出的那只猫本来就不像猫吧……

本篇主要介绍微信公众帐号开发中图文消息的使用,以及图文消息的几种表现形式。标题取名为"图文消息全攻略",这绝对不是标题党,是想借此机会把大家对图文消息相关的问题、疑虑、障碍全部清除掉。

图文消息的主要参数说明

通过微信官方的消息接口指南,可以看到对图文消息的参数介绍,如下图所示:

微信公众帐号开发教程之图文消息全攻略

从图中可以了解到:

  1. 图文消息的个数限制为10,也就是图中articlecount的值(图文消息的个数,限制在10条以内);
  2. 对于多图文消息,第一条图文的图片显示为大图,其他图文的图片显示为小图;
  3. 第一条图文的图片大小建议为640*320,其他图文的图片大小建议为80*80;

图文消息的多种表现形式

下面直接通过代码演示图文消息最主要的五种表现形式的用法,源代码如下:

package org.liufeng.course.service;
import java.util.arraylist;
import java.util.date;
import java.util.list;
import java.util.map;
import javax.servlet.http.httpservletrequest;
import org.liufeng.course.message.resp.article;
import org.liufeng.course.message.resp.newsmessage;
import org.liufeng.course.message.resp.textmessage;
import org.liufeng.course.util.messageutil;
/**
 * 核心服务类
 * 
 * @author liufeng
 * @date 2013-07-25
 */
public class coreservice {
 /**
 * 处理微信发来的请求
 * 
 * @param request
 * @return
 */
 public static string processrequest(httpservletrequest request) {
 string respmessage = null;
 try {
 // xml请求解析
 map<string, string> requestmap = messageutil.parsexml(request);
 // 发送方帐号(open_id)
 string fromusername = requestmap.get("fromusername");
 // 公众帐号
 string tousername = requestmap.get("tousername");
 // 消息类型
 string msgtype = requestmap.get("msgtype");
 // 默认回复此文本消息
 textmessage textmessage = new textmessage();
 textmessage.settousername(fromusername);
 textmessage.setfromusername(tousername);
 textmessage.setcreatetime(new date().gettime());
 textmessage.setmsgtype(messageutil.resp_message_type_text);
 textmessage.setfuncflag(0);
 // 由于href属性值必须用双引号引起,这与字符串本身的双引号冲突,所以要转义
 textmessage.setcontent("欢迎访问<a href=\"http://blog.csdn.net/lyq8479\">柳峰的博客</a>!");
 // 将文本消息对象转换成xml字符串
 respmessage = messageutil.textmessagetoxml(textmessage);
 // 文本消息
 if (msgtype.equals(messageutil.req_message_type_text)) {
 // 接收用户发送的文本消息内容
 string content = requestmap.get("content");
 // 创建图文消息
 newsmessage newsmessage = new newsmessage();
 newsmessage.settousername(fromusername);
 newsmessage.setfromusername(tousername);
 newsmessage.setcreatetime(new date().gettime());
 newsmessage.setmsgtype(messageutil.resp_message_type_news);
 newsmessage.setfuncflag(0);
 list<article> articlelist = new arraylist<article>();
 // 单图文消息
 if ("1".equals(content)) {
  article article = new article();
  article.settitle("微信公众帐号开发教程java版");
  article.setdescription("柳峰,80后,微信公众帐号开发经验4个月。为帮助初学者入门,特推出此系列教程,也希望借此机会认识更多同行!");
  article.setpicurl("http://0.xiaoqrobot.duapp.com/images/avatar_liufeng.jpg");
  article.seturl("http://blog.csdn.net/lyq8479");
  articlelist.add(article);
  // 设置图文消息个数
  newsmessage.setarticlecount(articlelist.size());
  // 设置图文消息包含的图文集合
  newsmessage.setarticles(articlelist);
  // 将图文消息对象转换成xml字符串
  respmessage = messageutil.newsmessagetoxml(newsmessage);
 }
 // 单图文消息---不含图片
 else if ("2".equals(content)) {
  article article = new article();
  article.settitle("微信公众帐号开发教程java版");
  // 图文消息中可以使用qq表情、符号表情
  article.setdescription("柳峰,80后," + emoji(0x1f6b9)
  + ",微信公众帐号开发经验4个月。为帮助初学者入门,特推出此系列连载教程,也希望借此机会认识更多同行!\n\n目前已推出教程共12篇,包括接口配置、消息封装、框架搭建、qq表情发送、符号表情发送等。\n\n后期还计划推出一些实用功能的开发讲解,例如:天气预报、周边搜索、聊天功能等。");
  // 将图片置为空
  article.setpicurl("");
  article.seturl("http://blog.csdn.net/lyq8479");
  articlelist.add(article);
  newsmessage.setarticlecount(articlelist.size());
  newsmessage.setarticles(articlelist);
  respmessage = messageutil.newsmessagetoxml(newsmessage);
 }
 // 多图文消息
 else if ("3".equals(content)) {
  article article1 = new article();
  article1.settitle("微信公众帐号开发教程\n引言");
  article1.setdescription("");
  article1.setpicurl("http://0.xiaoqrobot.duapp.com/images/avatar_liufeng.jpg");
  article1.seturl("http://blog.csdn.net/lyq8479/article/details/8937622");
  article article2 = new article();
  article2.settitle("第2篇\n微信公众帐号的类型");
  article2.setdescription("");
  article2.setpicurl("http://avatar.csdn.net/1/4/a/1_lyq8479.jpg");
  article2.seturl("http://blog.csdn.net/lyq8479/article/details/8941577");
  article article3 = new article();
  article3.settitle("第3篇\n开发模式启用及接口配置");
  article3.setdescription("");
  article3.setpicurl("http://avatar.csdn.net/1/4/a/1_lyq8479.jpg");
  article3.seturl("http://blog.csdn.net/lyq8479/article/details/8944988");
  articlelist.add(article1);
  articlelist.add(article2);
  articlelist.add(article3);
  newsmessage.setarticlecount(articlelist.size());
  newsmessage.setarticles(articlelist);
  respmessage = messageutil.newsmessagetoxml(newsmessage);
 }
 // 多图文消息---首条消息不含图片
 else if ("4".equals(content)) {
  article article1 = new article();
  article1.settitle("微信公众帐号开发教程java版");
  article1.setdescription("");
  // 将图片置为空
  article1.setpicurl("");
  article1.seturl("http://blog.csdn.net/lyq8479");
  article article2 = new article();
  article2.settitle("第4篇\n消息及消息处理工具的封装");
  article2.setdescription("");
  article2.setpicurl("http://avatar.csdn.net/1/4/a/1_lyq8479.jpg");
  article2.seturl("http://blog.csdn.net/lyq8479/article/details/8949088");
  article article3 = new article();
  article3.settitle("第5篇\n各种消息的接收与响应");
  article3.setdescription("");
  article3.setpicurl("http://avatar.csdn.net/1/4/a/1_lyq8479.jpg");
  article3.seturl("http://blog.csdn.net/lyq8479/article/details/8952173");
  article article4 = new article();
  article4.settitle("第6篇\n文本消息的内容长度限制揭秘");
  article4.setdescription("");
  article4.setpicurl("http://avatar.csdn.net/1/4/a/1_lyq8479.jpg");
  article4.seturl("http://blog.csdn.net/lyq8479/article/details/8967824");
  articlelist.add(article1);
  articlelist.add(article2);
  articlelist.add(article3);
  articlelist.add(article4);
  newsmessage.setarticlecount(articlelist.size());
  newsmessage.setarticles(articlelist);
  respmessage = messageutil.newsmessagetoxml(newsmessage);
 }
 // 多图文消息---最后一条消息不含图片
 else if ("5".equals(content)) {
  article article1 = new article();
  article1.settitle("第7篇\n文本消息中换行符的使用");
  article1.setdescription("");
  article1.setpicurl("http://0.xiaoqrobot.duapp.com/images/avatar_liufeng.jpg");
  article1.seturl("http://blog.csdn.net/lyq8479/article/details/9141467");
  article article2 = new article();
  article2.settitle("第8篇\n文本消息中使用网页超链接");
  article2.setdescription("");
  article2.setpicurl("http://avatar.csdn.net/1/4/a/1_lyq8479.jpg");
  article2.seturl("http://blog.csdn.net/lyq8479/article/details/9157455");
  article article3 = new article();
  article3.settitle("如果觉得文章对你有所帮助,请通过博客留言或关注微信公众帐号xiaoqrobot来支持柳峰!");
  article3.setdescription("");
  // 将图片置为空
  article3.setpicurl("");
  article3.seturl("http://blog.csdn.net/lyq8479");
  articlelist.add(article1);
  articlelist.add(article2);
  articlelist.add(article3);
  newsmessage.setarticlecount(articlelist.size());
  newsmessage.setarticles(articlelist);
  respmessage = messageutil.newsmessagetoxml(newsmessage);
 }
 }
 } catch (exception e) {
 e.printstacktrace();
 }
 return respmessage;
 }
 /**
 * emoji表情转换(hex -> utf-16)
 * 
 * @param hexemoji
 * @return
 */
 public static string emoji(int hexemoji) {
 return string.valueof(character.tochars(hexemoji));
 }
}

上面代码实现的功能是当用户发送数字1-5时,分别回复五种不同表现形式的图文消息给用户,如下:

a)用户发送1,回复单图文消息。参考代码68~81行,运行效果如下:

微信公众帐号开发教程之图文消息全攻略

b)用户发送2,回复单图文消息---不含图片。参考代码82~96行,运行效果如下:

微信公众帐号开发教程之图文消息全攻略

说明:图文消息的标题、描述是可以包含qq表情、符号表情的。

c)用户发送3,回复多图文消息。参考代码97~123行,运行效果如下:

微信公众帐号开发教程之图文消息全攻略

说明:对于多图文消息,描述不会被显示,可以在标题使用换行符,使得显示更加美观。

d)用户发送4,回复多图文消息---首条消息不含图片。参考代码124~158行,运行效果如下:

微信公众帐号开发教程之图文消息全攻略

e)用户发送5,回复多图文消息---最后一条消息不含图片。参考代码159~186行,运行效果如下:

微信公众帐号开发教程之图文消息全攻略

可以看出,图文消息有着丰富的内容及多样化的表现形式,希望大家能够根据各自的特点及实际使用需要,合理地运用。

最后,根据实践经验,我对图文消息做一个使用总结

1)一定要给图文消息的url属性赋值。不管是单图文,还是多图文,或者是不含图片的图文,都有可能会被用户点击。如果url为空,用户点击后将会打开一个空白页面,这给用户的体验是非常差的;

2)只有单图文的描述才会显示,多图文的描述不会被显示

3)图文消息的标题、描述中可以使用qq表情和符号表情。合理地运用表情符号,会使得消息更加生动;

4)图文消息的标题、描述中可以使用换行符。合理地使用换行符,会使得内容结构更加清晰;

5)图文消息的标题、描述中不支持超文本链接(html的<a>标签)。不只是技术上实现不了,就连逻辑上也说不通,因为一条图文消息的任何位置被点击,都将调用微信内置的浏览器打开url,如果标题、描述里再放几个超链接,不知道点击该打开哪个页面。真搞不懂为什么有好几个同学都在问这个问题,难道设计成多图文不好吗?

6)图文消息的链接、图片链接可以使用外部域名下的资源,如本例中:柳峰的头像、博文的链接,都是指向csdn网站的资源。在网上,甚至是微信官方交流群里,认为图文消息的url、picurl不可以使用外链的大有人在,不知道这谣言从哪开始的,实践是检验真理的唯一标准!

7)使用指定大小的图片。第一条图文的图片大小建议为640*320,其他图文的图片大小建议为80*80。如果使用的图片太大,加载慢,而且耗流量;如果使用的图片太小,显示后会被拉伸,失真了很难看。

8)每条图文消息的图文建议控制在1-4条。这样在绝大多数终端上一屏能够显示完,用户扫一眼就能大概了解消息的主要内容,这样最有可能促使用户去点击并阅读。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!