介绍被动回复消息中的图文消息,发送客服消息及高级群发消息接口的发送的图文消息与本文介绍的图文消息的各情况基本一致。

本文分为以下四个部分:

  1. 图文消息的定义
  2. 图文消息的实现
  3. 图文消息的类型
  4. 图文消息的回复

 

在微信公众平台消息中,发送被动响应消息中的图文消息的XML结构如下所示。

复制代码
  1. <xml>
  2. <ToUserName><![CDATA[toUser]]></ToUserName>
  3. <FromUserName><![CDATA[fromUser]]></FromUserName>
  4. <CreateTime>12345678</CreateTime>
  5. <MsgType><![CDATA[news]]></MsgType>
  6. <ArticleCount>2</ArticleCount>
  7. <Articles>
  8. <item>
  9. <Title><![CDATA[title1]]></Title>
  10. <Description><![CDATA[description1]]></Description>
  11. <PicUrl><![CDATA[picurl]]></PicUrl>
  12. <Url><![CDATA[url]]></Url>
  13. </item>
  14. <item>
  15. <Title><![CDATA[title]]></Title>
  16. <Description><![CDATA[description]]></Description>
  17. <PicUrl><![CDATA[picurl]]></PicUrl>
  18. <Url><![CDATA[url]]></Url>
  19. </item>
  20. </Articles>
  21. </xml>
复制代码

其参数说明如下.

参数 是否必须 说明
ToUserName 接收方帐号(收到的OpenID)
FromUserName 开发者微信号
CreateTime 消息创建时间 (整型)
MsgType news
ArticleCount 图文消息个数,限制为10条以内
Articles 多条图文消息信息,默认第一个item为大图,注意,如果图文数超过10,则将会无响应
Title 图文消息标题
Description 图文消息描述
PicUrl 图片链接,支持JPG、PNG格式,较好的效果为大图360*200,小图200*200
Url 点击图文消息跳转链接

从中可以知道,图文消息的类型为news,图文消息个数最大为10(注意在编辑模式中,可以设置最大条数为8)。超过10条,微信将不再响应。

 多图文消息中会有大图和小图的区别,第一个item中的图片为大图,其他item中的图片为小图。

 

根据上述定义,我们定义图文消息的回复代码实现如下:

复制代码
  1. //回复图文消息
  2. private function transmitNews($object, $newsArray)
  3. {
  4. if(!is_array($newsArray)){
  5. return;
  6. }
  7. $itemTpl = " <item>
  8. <Title><![CDATA[%s]]></Title>
  9. <Description><![CDATA[%s]]></Description>
  10. <PicUrl><![CDATA[%s]]></PicUrl>
  11. <Url><![CDATA[%s]]></Url>
  12. </item>
  13. ";
  14. $item_str = "";
  15. foreach ($newsArray as $item){
  16. $item_str .= sprintf($itemTpl, $item[\'Title\'], $item[\'Description\'], $item[\'PicUrl\'], $item[\'Url\']);
  17. }
  18. $xmlTpl = "<xml>
  19. <ToUserName><![CDATA[%s]]></ToUserName>
  20. <FromUserName><![CDATA[%s]]></FromUserName>
  21. <CreateTime>%s</CreateTime>
  22. <MsgType><![CDATA[news]]></MsgType>
  23. <ArticleCount>%s</ArticleCount>
  24. <Articles>
  25. $item_str</Articles>
  26. </xml>";
  27. $result = sprintf($xmlTpl, $object->FromUserName, $object->ToUserName, time(), count($newsArray));
  28. return $result;
  29. }
复制代码

上述代码中,先将各item连接形成item_str,再将item_str赋值到xml模板中,组装一个图文消息。组装时,将object中的发送、接收方互换位置,计算出图文项的个数。

而在构造图文消息并使用图文回复的代码如下所示

复制代码
  1. if (strstr($keyword, "单图文")){
  2. $content = array();
  3. $content[] = array("Title"=>"单图文标题", "Description"=>"单图文内容", "PicUrl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  4. }else if (strstr($keyword, "图文") || strstr($keyword, "多图文")){
  5. $content = array();
  6. $content[] = array("Title"=>"多图文1标题", "Description"=>"", "PicUrl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  7. $content[] = array("Title"=>"多图文2标题", "Description"=>"", "PicUrl"=>"http://d.hiphotos.bdimg.com/wisegame/pic/item/f3529822720e0cf3ac9f1ada0846f21fbe09aaa3.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  8. $content[] = array("Title"=>"多图文3标题", "Description"=>"", "PicUrl"=>"http://g.hiphotos.bdimg.com/wisegame/pic/item/18cb0a46f21fbe090d338acc6a600c338644adfd.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  9. }
  10. if(is_array($content)){
  11. if (isset($content[0][\'PicUrl\'])){
  12. $result = $this->transmitNews($object, $content);
  13. }else if (isset($content[\'MusicUrl\'])){
  14. $result = $this->transmitMusic($object, $content);
  15. }
  16. }else{
  17. $result = $this->transmitText($object, $content);
  18. }
复制代码

一个完整的体验代码可参考 微信公众平台开发接口PHP SDK完整版

 

图文消息从item的个数上来分,可以分为单图文消息和多图文消息,其中单图文消息中item数为1,多图文消息中item数从2~10都包括。

虽然图文消息只有两种类型,但其实可以通过设置不同的参数构造出更多的展示效果。

单图文消息

单图文消息就是一个图文消息。

下面代码定义一个基本的图文消息

  1. $content = array();
  2. $content[] = array("Title" =>"大学英语四六级成绩查询",
  3. "Description" =>"点击图片进入",
  4. "PicUrl" =>"http://365jia.cn/uploads/13/0301/5130c2ff93618.jpg",
  5. "Url" =>"http://israel.sinaapp.com/cet/index.php?openid=".$object->FromUserName);

它的回复效果如图所示。其特点是标题粗体显示,内容字体则为灰色显示,如果有图片,则同时显示日期。

再看一下不定义图片和链接时的情况,代码如下

复制代码
  1. $aqiArray = array();
  2. $aqiArray[] = array("Title" =>$cityAir[0][\'area\']."空气质量",
  3. "Description" =>"空气质量指数(AQI):".$cityAir[0][\'aqi\']."\n".
  4. "空气质量等级:".$cityAir[0][\'quality\']."\n".
  5. "细颗粒物(PM2.5):".$cityAir[0][\'pm2_5\']."\n".
  6. "可吸入颗粒物(PM10):".$cityAir[0][\'pm10\']."\n".
  7. "一氧化碳(CO):".$cityAir[0][\'co\']."\n".
  8. "二氧化氮(NO2):".$cityAir[0][\'no2\']."\n".
  9. "二氧化硫(SO2):".$cityAir[0][\'so2\']."\n".
  10. "臭氧(O3):".$cityAir[0][\'o3\']."\n".
  11. "更新时间:".preg_replace("/([a-zA-Z])/i", " ", $cityAir[0][\'time_point\']);
  12. "PicUrl" =>"",
  13. "Url" =>"");
复制代码

其效果如下所示。

可以看到,这时,由于没有图片,所以也不显示日期了,另外没有带链接,所以“查看全文”也不显示了。

 

多图文

多图文消息一个最大的特点就是:描述内容不会在返回中显示,所以没有必要定义描述了。

下面是一个基本的多图文消息的定义

  1. $content = array();
  2. $content[] = array("Title"=>"多图文1标题", "Description"=>"", "PicUrl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  3. $content[] = array("Title"=>"多图文2标题", "Description"=>"", "PicUrl"=>"http://d.hiphotos.bdimg.com/wisegame/pic/item/f3529822720e0cf3ac9f1ada0846f21fbe09aaa3.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  4. $content[] = array("Title"=>"多图文3标题", "Description"=>"", "PicUrl"=>"http://g.hiphotos.bdimg.com/wisegame/pic/item/18cb0a46f21fbe090d338acc6a600c338644adfd.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");

其实现效果如下

如果觉得首图太大,占地方,也可以不填写。

比如这样的代码

复制代码
  1. $content = array();
  2. $content[] = array("Title" =>"微信公众平台开发教程", "Description" =>"", "PicUrl" =>"", "Url" =>"");
  3. $content[] = array("Title" =>"【基础入门】免费\n1. 申请服务器资源\n2. 启用开发模式\n3. 消息类型详解\n4. 获取接收消息\n5. 回复不同消息", "Description" =>"", "PicUrl" =>"http://e.hiphotos.bdimg.com/wisegame/pic/item/9e1f4134970a304e1e398c62d1c8a786c9175c0a.jpg", "Url" =>"http://m.cnblogs.com/99079/3153567.html?full=1");
  4. $content[] = array("Title" =>"【初级教程】双11六折促销\n1.小黄鸡机器人\n2.英语类公众账号开发", "Description" =>"", "PicUrl" =>"http://g.hiphotos.bdimg.com/wisegame/pic/item/3166d0160924ab186196512537fae6cd7b890b24.jpg", "Url" =>"http://israel.duapp.com/taobao/index.php?id=1");
复制代码

其效果如下所示

还可以所有的图片都不填,都用于来显示文字。

比如如下代码

复制代码
  1. $content = array();
  2. $content[] = array("Title" =>"欢迎关注方倍工作室","Description" =>"", "PicUrl" =>"", "Url" =>"");
  3. $content[] = array("Title" =>"【1】新闻 天气 空气 股票 彩票 星座\n".
  4. "【2】快递 人品 算命 解梦 附近 苹果\n".
  5. "【3】公交 火车 汽车 航班 路况 违章\n".
  6. "【4】翻译 百科 双语 听力 成语 历史\n".
  7. "【5】团购 充值 菜谱 贺卡 景点 冬吴\n".
  8. "【6】情侣相 夫妻相 亲子相 女人味\n".
  9. "【7】相册 游戏 笑话 答题 点歌 树洞\n".
  10. "【8】微社区 四六级 华强北 世界杯\n\n".
  11. "更多精彩,即将亮相,敬请期待!";, "Description" =>"", "PicUrl" =>"", "Url" =>"");
  12. $content[] = array("Title" =>"回复对应数字查看使用方法\n发送 0 返回本菜单", "Description" =>"", "PicUrl" =>"", "Url" =>"");
复制代码

其效果如下所示

 

因为图文消息有更好的视觉效果,很多朋友都想要实现图文消息的回复。主要有以下几种情况

1. 关注时回复图文消息

放到订阅事件下就行了,代码如下

复制代码
  1. //接收事件消息
  2. private function receiveEvent($object)
  3. {
  4. $content = "";
  5. switch ($object->Event)
  6. {
  7. case "subscribe":
  8. $content = array();
  9. $content[] = array("Title"=>"多图文1标题", "Description"=>"", "PicUrl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  10. $content[] = array("Title"=>"多图文2标题", "Description"=>"", "PicUrl"=>"http://d.hiphotos.bdimg.com/wisegame/pic/item/f3529822720e0cf3ac9f1ada0846f21fbe09aaa3.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  11. $content[] = array("Title"=>"多图文3标题", "Description"=>"", "PicUrl"=>"http://g.hiphotos.bdimg.com/wisegame/pic/item/18cb0a46f21fbe090d338acc6a600c338644adfd.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  12. break;
  13. case "unsubscribe":
  14. $content = "取消关注";
  15. break;
  16. }
  17. if(is_array($content)){
  18. if (isset($content[0])){
  19. $result = $this->transmitNews($object, $content);
  20. }else if (isset($content[\'MusicUrl\'])){
  21. $result = $this->transmitMusic($object, $content);
  22. }
  23. }else{
  24. $result = $this->transmitText($object, $content);
  25. }
  26. return $result;
  27. }
复制代码

2. 发送关键字回复图文消息

通过判断关键字既可实现,

复制代码
  1. //接收文本消息
  2. private function receiveText($object)
  3. {
  4. $keyword = trim($object->Content);
  5. if (strstr($keyword, "单图文")){
  6. $content = array();
  7. $content[] = array("Title"=>"单图文标题", "Description"=>"单图文内容", "PicUrl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  8. }else if (strstr($keyword, "图文") || strstr($keyword, "多图文")){
  9. $content = array();
  10. $content[] = array("Title"=>"多图文1标题", "Description"=>"", "PicUrl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  11. $content[] = array("Title"=>"多图文2标题", "Description"=>"", "PicUrl"=>"http://d.hiphotos.bdimg.com/wisegame/pic/item/f3529822720e0cf3ac9f1ada0846f21fbe09aaa3.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  12. $content[] = array("Title"=>"多图文3标题", "Description"=>"", "PicUrl"=>"http://g.hiphotos.bdimg.com/wisegame/pic/item/18cb0a46f21fbe090d338acc6a600c338644adfd.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  13. }else{
  14. $content = date("Y-m-d H:i:s",time())."\n技术支持 方倍工作室";
  15. }
  16. if(is_array($content)){
  17. if (isset($content[0][\'PicUrl\'])){
  18. $result = $this->transmitNews($object, $content);
  19. }else if (isset($content[\'MusicUrl\'])){
  20. $result = $this->transmitMusic($object, $content);
  21. }
  22. }else{
  23. $result = $this->transmitText($object, $content);
  24. }
  25. }
复制代码

3. 点击菜单时回复图文消息

在菜单点击事件中响应即可

复制代码
  1. //接收事件消息
  2. private function receiveEvent($object)
  3. {
  4. $content = "";
  5. switch ($object->Event)
  6. {
  7. case "subscribe":
  8. $content = "欢迎关注方倍工作室 ";
  9. break;
  10. case "CLICK":
  11. switch ($object->EventKey)
  12. {
  13. case "COMPANY":
  14. $content = array();
  15. $content[] = array("Title"=>"多图文1标题", "Description"=>"", "PicUrl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "Url" =>"http://m.cnblogs.com/?u=txw1958");
  16. break;
  17. default:
  18. $content = "点击菜单:".$object->EventKey;
  19. break;
  20. }
  21. break;
  22. }
  23. if(is_array($content)){
  24. if (isset($content[0])){
  25. $result = $this->transmitNews($object, $content);
  26. }else if (isset($content[\'MusicUrl\'])){
  27. $result = $this->transmitMusic($object, $content);
  28. }
  29. }else{
  30. $result = $this->transmitText($object, $content);
  31. }
  32. return $result;
  33. }
复制代码

4. 回复多个图文消息

由于回复消息一次只能回复一条,因此要回复多个图文消息,就需要使用其他接口。这需要已经认证的服务号才能拥有权限。

可以回复图文消息的接口有客服接口及高级群发接口,如果被动回复不够,就可使用客服接口来发送。

版权声明:本文为zikai原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/zikai/p/5081787.html