微信公众平台开发入门教程(SAE方倍工作室)
我们将使用微信公众账号方倍工作室作为讲解的例子,二维码见底部。
本系列教程将引导你完成如下任务:
创建新浪云计算平台应用启用微信公众平台开发模式基础接口消息及事件微信公众平台php sdk微信公众平台开发模式原理开发天气预报功能
第一章 申请服务器资源
创建新浪云计算应用
申请账号
我们使用sae新浪云计算平台作为服务器资源,并且申请php环境+mysql数据库作为程序运行环境。
申请地址: ,使用新浪微博账号可以直接登录sae,登录后sae将赠送500个免费云豆。
创建新应用
登录后点击顶部【我的首页】
点击下侧的创建新应用,这时会弹出提示, 禁止放置违法违规内容,点击继续创建,弹出如下窗口。
选择一个未使用的appid,如果老是已经被使用不知道该什么好,就填写你的qq号或者手机号吧。
填写二级域名appid、应用名称、验证码,开发语言选择php,应用类型选择web应用。然后点击创建应用
应用创建成功。并自动跳转到应用列表中,可以看到已经有刚才创建的cctv-7
创建版本
选择cctv-7右侧的应用管理下面的代码管理,
跳转到代码管理
点击右侧的
版本号默认为1,点击创建,成功后如下图所示:
到这里,就成功创建了一个域名url为 http://cctv7.sinaapp.com/ 的应用了。
上传代码
将以下代码复制下来,另存为index.php。必须使用专业的开发编辑软件操作,例如notepad++,不要使用windows自带的记事本等。
<?php
/*
方倍工作室 http://www.cnblogs.com/txw1958/
copyright 2013 www.doucube.com all rights reserved
*/
define("token", "weixin");
$wechatobj = new wechatcallbackapitest();
if (isset($_get['echostr'])) {
$wechatobj->valid();
}else{
$wechatobj->responsemsg();
}
class wechatcallbackapitest
{
public function valid()
{
$echostr = $_get["echostr"];
if($this->checksignature()){
echo $echostr;
exit;
}
}
private function checksignature()
{
$signature = $_get["signature"];
$timestamp = $_get["timestamp"];
$nonce = $_get["nonce"];
$token = token;
$tmparr = array($token, $timestamp, $nonce);
sort($tmparr);
$tmpstr = implode( $tmparr );
$tmpstr = sha1( $tmpstr );
if( $tmpstr == $signature ){
return true;
}else{
return false;
}
}
public function responsemsg()
{
$poststr = $globals["http_raw_post_data"];
if (!empty($poststr)){
$postobj = simplexml_load_string($poststr, 'simplexmlelement', libxml_nocdata);
$fromusername = $postobj->fromusername;
$tousername = $postobj->tousername;
$keyword = trim($postobj->content);
$time = time();
$texttpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[%s]]></msgtype>
<content><![cdata[%s]]></content>
<funcflag>0</funcflag>
</xml>";
if($keyword == "?" || $keyword == "?")
{
$msgtype = "text";
$contentstr = date("y-m-d h:i:s",time());
$resultstr = sprintf($texttpl, $fromusername, $tousername, $time, $msgtype, $contentstr);
echo $resultstr;
}
}else{
echo "";
exit;
}
}
}
?>
然后将index.php文件压缩成zip格式,注意不能用rar格式
这样会生成一个index.zip的文件。或者直接下载方倍已经压缩好的zip文件
在代码管理界面中,选择操作按钮。
选择上传代码包。
点击上传文件,选择刚才压缩好的index.zip文件,点击上传,上传成功后如下所示,如果上传有问题,请在chrome浏览器下重试一下。
点击操作按钮下的代码编辑,
我们可以看到index.php已经上传成功,双击可以查看编辑里面的代码
新浪云应用的创建就成功了。
第二章 启用开发模式
微信公众平台开发模式
高级功能
微信公众平台地址:
登录微信公众平台后台,选择高级功能,进入后就看到两种模式
我们需要先关闭编辑模式。点击编辑模式的进入
滑动关闭
开发模式
进入开发模式里面
点击成为开发者
弹出url和token填写框
此处的url为上篇中介绍的云应用的域名,而token在index.php中定义为weixin。提交后提示你已成为开发者。
再滑动右上角启用按钮。
恭喜,你成功启用开发模式。
自动回复
在上面的例子中,实现了一个发送“?”就能回复当前时间的功能。
效果如下:
至此,你的微信公众平台账号已经实现自动回复了。
第三章 基础接口消息及事件
所有账号在申请之后,都将获得基础接口的权限,基础接口中将包括接收用户消息,向用户回复消息,接受事件推送等三种服务。
接收用户消息
目前普通用户能向公众账号推送五种格式的消息:文本(包括表情)、语音、图片、视频、位置、链接。
下面就这五种分别详解如下:
1. 文本(包括表情)
发送文本及表情
2. 图片
发送图片
3. 语音
发送语音
4. 视频
发送视频
5. 位置
发送位置
6. 链接
发送链接
向用户回复消息
目前普通公众账号能向用户推送六种格式的消息:文本、图文、音乐、图片、语音、视频。其中图文消息包括单条图文消息和多条图文消息,展示方式有一点点不同。
下面就这几种分别详解如下:【图片、语音、视频由于需要用到和高级接口相关的media_id,在本教程中暂不讨论。】
1. 文本消息格式
回复文本
2. 图文消息格式
2.1 单条图文消息
回复单条图文
2.2 多图文消息
回复多图文
3. 音乐消息
回复音乐消息
接收事件推送
目前用户在关注和取消关注,以及点击菜单的时候会自动向公众平台发送事件推送消息:
1. 关注事件
第四章 微信公众平台php sdk
方倍工作室开发了微信公众平台的phpsdk,集成了目前所有消息及事件的接收及发送,代码如下:
<?php
/*
方倍工作室
http://www.cnblogs.com/txw1958/
copyright 2014 all rights reserved
*/
define("token", "weixin");
$wechatobj = new wechatcallbackapitest();
if (!isset($_get['echostr'])) {
$wechatobj->responsemsg();
}else{
$wechatobj->valid();
}
class wechatcallbackapitest
{
//验证消息
public function valid()
{
$echostr = $_get["echostr"];
if($this->checksignature()){
echo $echostr;
exit;
}
}
//检查签名
private function checksignature()
{
$signature = $_get["signature"];
$timestamp = $_get["timestamp"];
$nonce = $_get["nonce"];
$token = token;
$tmparr = array($token, $timestamp, $nonce);
sort($tmparr, sort_string);
$tmpstr = implode($tmparr);
$tmpstr = sha1($tmpstr);
if($tmpstr == $signature){
return true;
}else{
return false;
}
}
//响应消息
public function responsemsg()
{
$poststr = $globals["http_raw_post_data"];
if (!empty($poststr)){
$this->logger("r ".$poststr);
$postobj = simplexml_load_string($poststr, 'simplexmlelement', libxml_nocdata);
$rx_type = trim($postobj->msgtype);
switch ($rx_type)
{
case "event":
$result = $this->receiveevent($postobj);
break;
case "text":
$result = $this->receivetext($postobj);
break;
case "image":
$result = $this->receiveimage($postobj);
break;
case "location":
$result = $this->receivelocation($postobj);
break;
case "voice":
$result = $this->receivevoice($postobj);
break;
case "video":
$result = $this->receivevideo($postobj);
break;
case "link":
$result = $this->receivelink($postobj);
break;
default:
$result = "unknown msg type: ".$rx_type;
break;
}
$this->logger("t ".$result);
echo $result;
}else {
echo "";
exit;
}
}
//接收事件消息
private function receiveevent($object)
{
$content = "";
switch ($object->event)
{
case "subscribe":
$content = "欢迎关注方倍工作室 ";
$content .= (!empty($object->eventkey))?("\n来自二维码场景 ".str_replace("qrscene_","",$object->eventkey)):"";
break;
case "unsubscribe":
$content = "取消关注";
break;
case "scan":
$content = "扫描场景 ".$object->eventkey;
break;
case "click":
switch ($object->eventkey)
{
case "company":
$content = "方倍工作室提供互联网相关产品与服务。";
break;
default:
$content = "点击菜单:".$object->eventkey;
break;
}
break;
case "location":
$content = "上传位置:纬度 ".$object->latitude.";经度 ".$object->longitude;
break;
case "view":
$content = "跳转链接 ".$object->eventkey;
break;
default:
$content = "receive a new event: ".$object->event;
break;
}
$result = $this->transmittext($object, $content);
return $result;
}
//接收文本消息
private function receivetext($object)
{
switch ($object->content)
{
case "文本":
$content = "这是个文本消息";
break;
case "图文":
case "单图文":
$content = array();
$content[] = array("title"=>"单图文标题", "description"=>"单图文内容", "picurl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "url" =>"http://m.cnblogs.com/?u=txw1958");
break;
case "多图文":
$content = array();
$content[] = array("title"=>"多图文1标题", "description"=>"", "picurl"=>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg", "url" =>"http://m.cnblogs.com/?u=txw1958");
$content[] = array("title"=>"多图文2标题", "description"=>"", "picurl"=>"http://d.hiphotos.bdimg.com/wisegame/pic/item/f3529822720e0cf3ac9f1ada0846f21fbe09aaa3.jpg", "url" =>"http://m.cnblogs.com/?u=txw1958");
$content[] = array("title"=>"多图文3标题", "description"=>"", "picurl"=>"http://g.hiphotos.bdimg.com/wisegame/pic/item/18cb0a46f21fbe090d338acc6a600c338644adfd.jpg", "url" =>"http://m.cnblogs.com/?u=txw1958");
break;
case "音乐":
$content = array("title"=>"最炫民族风", "description"=>"歌手:凤凰传奇", "musicurl"=>"http://121.199.4.61/music/zxmzf.mp3", "hqmusicurl"=>"http://121.199.4.61/music/zxmzf.mp3");
break;
default:
$content = date("y-m-d h:i:s",time());
break;
}
if(is_array($content)){
if (isset($content[0]['picurl'])){
$result = $this->transmitnews($object, $content);
}else if (isset($content['musicurl'])){
$result = $this->transmitmusic($object, $content);
}
}else{
$result = $this->transmittext($object, $content);
}
return $result;
}
//接收图片消息
private function receiveimage($object)
{
$content = array("mediaid"=>$object->mediaid);
$result = $this->transmitimage($object, $content);
return $result;
}
//接收位置消息
private function receivelocation($object)
{
$content = "你发送的是位置,纬度为:".$object->location_x.";经度为:".$object->location_y.";缩放级别为:".$object->scale.";位置为:".$object->label;
$result = $this->transmittext($object, $content);
return $result;
}
//接收语音消息
private function receivevoice($object)
{
if (isset($object->recognition) && !empty($object->recognition)){
$content = "你刚才说的是:".$object->recognition;
$result = $this->transmittext($object, $content);
}else{
$content = array("mediaid"=>$object->mediaid);
$result = $this->transmitvoice($object, $content);
}
return $result;
}
//接收视频消息
private function receivevideo($object)
{
$content = array("mediaid"=>$object->mediaid, "thumbmediaid"=>$object->thumbmediaid, "title"=>"", "description"=>"");
$result = $this->transmitvideo($object, $content);
return $result;
}
//接收链接消息
private function receivelink($object)
{
$content = "你发送的是链接,标题为:".$object->title.";内容为:".$object->description.";链接地址为:".$object->url;
$result = $this->transmittext($object, $content);
return $result;
}
//回复文本消息
private function transmittext($object, $content)
{
$texttpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[text]]></msgtype>
<content><![cdata[%s]]></content>
</xml>";
$result = sprintf($texttpl, $object->fromusername, $object->tousername, time(), $content);
return $result;
}
//回复图片消息
private function transmitimage($object, $imagearray)
{
$itemtpl = "<image>
<mediaid><![cdata[%s]]></mediaid>
</image>";
$item_str = sprintf($itemtpl, $imagearray['mediaid']);
$texttpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[image]]></msgtype>
$item_str
</xml>";
$result = sprintf($texttpl, $object->fromusername, $object->tousername, time());
return $result;
}
//回复语音消息
private function transmitvoice($object, $voicearray)
{
$itemtpl = "<voice>
<mediaid><![cdata[%s]]></mediaid>
</voice>";
$item_str = sprintf($itemtpl, $voicearray['mediaid']);
$texttpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[voice]]></msgtype>
$item_str
</xml>";
$result = sprintf($texttpl, $object->fromusername, $object->tousername, time());
return $result;
}
//回复视频消息
private function transmitvideo($object, $videoarray)
{
$itemtpl = "<video>
<mediaid><![cdata[%s]]></mediaid>
<thumbmediaid><![cdata[%s]]></thumbmediaid>
<title><![cdata[%s]]></title>
<description><![cdata[%s]]></description>
</video>";
$item_str = sprintf($itemtpl, $videoarray['mediaid'], $videoarray['thumbmediaid'], $videoarray['title'], $videoarray['description']);
$texttpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[video]]></msgtype>
$item_str
</xml>";
$result = sprintf($texttpl, $object->fromusername, $object->tousername, time());
return $result;
}
//回复图文消息
private function transmitnews($object, $newsarray)
{
if(!is_array($newsarray)){
return;
}
$itemtpl = " <item>
<title><![cdata[%s]]></title>
<description><![cdata[%s]]></description>
<picurl><![cdata[%s]]></picurl>
<url><![cdata[%s]]></url>
</item>
";
$item_str = "";
foreach ($newsarray as $item){
$item_str .= sprintf($itemtpl, $item['title'], $item['description'], $item['picurl'], $item['url']);
}
$newstpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[news]]></msgtype>
<content><![cdata[]]></content>
<articlecount>%s</articlecount>
<articles>
$item_str</articles>
</xml>";
$result = sprintf($newstpl, $object->fromusername, $object->tousername, time(), count($newsarray));
return $result;
}
//回复音乐消息
private function transmitmusic($object, $musicarray)
{
$itemtpl = "<music>
<title><![cdata[%s]]></title>
<description><![cdata[%s]]></description>
<musicurl><![cdata[%s]]></musicurl>
<hqmusicurl><![cdata[%s]]></hqmusicurl>
</music>";
$item_str = sprintf($itemtpl, $musicarray['title'], $musicarray['description'], $musicarray['musicurl'], $musicarray['hqmusicurl']);
$texttpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[music]]></msgtype>
$item_str
</xml>";
$result = sprintf($texttpl, $object->fromusername, $object->tousername, time());
return $result;
}
//日志记录
private function logger($log_content)
{
if(isset($_server['http_appname'])){ //sae
sae_set_display_errors(false);
sae_debug($log_content);
sae_set_display_errors(true);
}else if($_server['remote_addr'] != "127.0.0.1"){ //local
$max_size = 10000;
$log_filename = "log.xml";
if(file_exists($log_filename) and (abs(filesize($log_filename)) > $max_size)){unlink($log_filename);}
file_put_contents($log_filename, date('h:i:s')." ".$log_content."\r\n", file_append);
}
}
}
?>
使用第一章同样方法,将上述代码另存为index.php,压缩成index.zip,或者直接点击下载,上传到sae,你的公众账号就能接收及回复所有消息类型及事件通知了。
在公众账号中回复以下文字,你将得到和上一章一样的回复内容。
文本
图文
多图文
音乐
时间
还可以尝试以下操作,体验一下其他消息
发送一张图片给公众账号
发送一段语音给公众账号
发送一段视频给公众账号
发送位置信息给公众账号
发送收藏中的链接给公众账号第五章 微信公众平台开发模式原理分析
在体验了上一节的各种功能之后,我们只是知其然,这一节里面,将介绍在上面的基础上介绍微信公众平台收发消息机制及原理,这是知其所以然。
开发模式成为开发者时的消息校验原理
在开发者首次提交验证申请时,微信服务器将发送get请求到填写的url上,并且带上四个参数(signature、timestamp、nonce、echostr),开发者通过对签名(即signature)的效验,来判断此条消息的真实性。
此后,每次开发者接收用户消息的时候,微信也都会带上前面三个参数(signature、timestamp、nonce)访问开发者设置的url,开发者依然通过对签名的效验判断此条消息的真实性。效验方式与首次提交验证申请一致。
参数 | 描述 |
---|---|
signature | 微信加密签名,signature结合了开发者填写的token参数和请求中的timestamp参数、nonce参数。 |
timestamp | 时间戳 |
nonce | 随机数 |
echostr | 随机字符串 |
开发者通过检验signature对请求进行校验(下面有校验方式)。若确认此次get请求来自微信服务器,请原样返回echostr参数内容,则接入生效,成为开发者成功,否则接入失败。
加密/校验流程如下:
1. 将token、timestamp、nonce三个参数进行字典序排序
2. 将三个参数字符串拼接成一个字符串进行sha1加密
3. 开发者获得加密后的字符串可与signature对比,标识该请求来源于微信启用接口是由代码中的checksignature()函数来实现校验的。如果对这一原理难以理解,可以暂时不用深究,继续看下面。
成为开发者后消息收发时的原理
再来看下这个图,当用户发送一个“?”时,系统回复了一个时间
这一原理的消息流程图如下所示。
从上图可以看出,用户在发送一个?后,微信服务器将组装一个消息发送给我们自己的服务器,自己的服务器然后回复一个时间,并且将该时间也按一定的规则组装,回复给公众账号,公众账号再回复给用户,在这个收发过程中,发送方和接收方进行了调换(tousername和fromusername值互换),收发都是以xml格式在后台进行传输的,
所以掌握各种消息类型的收发就是进行微信公众平台开发的基础!
下面对前面所述的各种消息类型讲解其xml数据包的格式。
各种收发消息的xml数据包分析
接收消息
1. 文本(包括表情)
发送文本及表情
文字后台格式:
<xml>
<tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></fromusername>
<createtime>1359028446</createtime>
<msgtype><![cdata[text]]></msgtype>
<content><![cdata[测试文字]]></content>
<msgid>5836982729904121631</msgid>
</xml>
表情后台格式
<xml><tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></fromusername>
<createtime>1359044526</createtime>
<msgtype><![cdata[text]]></msgtype>
<content><![cdata[/::)/::~/::b/::|/:8-)]]></content>
<msgid>5837051792978241864</msgid>
</xml>
xml格式讲解
tousername 消息接收方微信号,一般为公众平台账号微信号
fromusername 消息发送方微信号
createtime 消息创建时间
msgtype 消息类型;文本消息为text
content 消息内容
msgid 消息id号
可以看出,文本和表情的消息类型均为文本
2. 图片
发送图片
后台格式:
<xml><tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></fromusername>
<createtime>1359028479</createtime>
<msgtype><![cdata[image]]></msgtype>
<picurl><![cdata[http://mmbiz.qpic.cn/mmbiz/l4qjytoibummhn90t1mnaibyiar8ljyicf3mw7xx3blp1qzgub7ctz0dxqyfi4uaqh1fws3huicpibjf0poqleqydmlg/0]]></picurl>
<msgid>5836982871638042400</msgid>
<mediaid><![cdata[pgkso3lagbvtsfyo7fgu51kuya07d0c_nozz2fn1z6vythosf59ptfl0vaggxkvh]]></mediaid>
</xml>
xml格式讲解
tousername 消息接收方微信号,一般为公众平台账号微信号
fromusername 消息发送方微信号
createtime 消息创建时间
msgtype 消息类型;图片消息为image
picurl 图片链接地址,可以用http get获取
msgid 消息id号
3. 语音
发送语音
后台格式:
<xml><tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></fromusername>
<createtime>1359028479</createtime>
<msgtype><![cdata[image]]></msgtype>
<picurl><![cdata[http://mmbiz.qpic.cn/mmbiz/l4qjytoibummhn90t1mnaibyiar8ljyicf3mw7xx3blp1qzgub7ctz0dxqyfi4uaqh1fws3huicpibjf0poqleqydmlg/0]]></picurl>
<msgid>5836982871638042400</msgid>
<mediaid><![cdata[pgkso3lagbvtsfyo7fgu51kuya07d0c_nozz2fn1z6vythosf59ptfl0vaggxkvh]]></mediaid>
</xml>
xml格式讲解
tousername 消息接收方微信号,一般为公众平台账号微信号
fromusername 消息发送方微信号
createtime 消息创建时间
msgtype 消息类型;语音消息为voice
mediaid 媒体id
format 语音格式,这里为amr
msgid 消息id号
附:amr接口简介
全称adaptive multi-rate,主要用于移动设备的音频,压缩比比较大,但相对其他的压缩格式质量比较差,由于多用于人声,通话,效果还是很不错的。
4. 视频
发送视频
后台格式:
xml><tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></fromusername>
<createtime>1359028186</createtime>
<msgtype><![cdata[video]]></msgtype>
<mediaid><![cdata[dbvfrij29lb2hxuypc0r6vlyxwgychzpbrj_iis6yaghutyxuktfsdcscpeoquyr]]></mediaid>
<thumbmediaid><![cdata[mxuj5gcceesjwx2t9qsk62yziclcp_hnrdftqcojlpet2g9q3d22ukslybflz01j]]></thumbmediaid>
<msgid>5836981613212624665</msgid>
</xml>
xml格式讲解
tousername 消息接收方微信号,一般为公众平台账号微信号
fromusername 消息发送方微信号
createtime 消息创建时间
msgtype 消息类型;视频消息为video
mediaid 媒体id
thumbmediaid 媒体缩略id?
msgid 消息id号
5. 位置
发送位置
后台格式:
<xml>
<tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></flacfromusername>
<createtime>1359036619</createtime>
<msgtype><![cdata[location]]></msgtype>
<location_x>22.539968</location_x>
<location_y>113.954980</location_y>
<scale>16</scale>
<label><![cdata[中国广东省深圳市南山区华侨城深南大道9789号 邮政编码: 518057]]></label>
<msgid>5837017832671832047</msgid>
</xml>
xml格式讲解
tousername 消息接收方微信号,一般为公众平台账号微信号
fromusername 消息发送方微信号
createtime 消息创建时间
msgtype 消息类型,地理位置为location
location_x 地理位置纬度
location_y 地理位置经度
scale 地图缩放大小
label 地理位置信息
msgid 消息id号
6. 链接
发送链接
后台格式:
<xml>
<tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjl2lydftam-oxdgb4xzcnc8]]></fromusername>
<createtime>1359709372</createtime>
<msgtype><![cdata[link]]></msgtype>
<title><![cdata[微信公众平台开发者的江湖]]></title>
<description><![cdata[陈坤的微信公众号这段时间大火,大家..]]></description>
<url><![cdata[http://israel.duapp.com/web/photo.php]]></url>
<msgid>5839907284805129867</msgid>
</xml>
xml格式讲解
tousername 消息接收方微信号,一般为公众平台账号微信号
fromusername 消息发送方微信号
createtime 消息创建时间
msgtype 消息类型,链接为link
title 图文消息标题
description 图文消息描述
url 点击图文消息跳转链接
msgid 消息id号
发送消息
只介绍三种格式的消息:文本、图文、音乐。其中图文消息包括单条图文消息和多条图文消息,展示方式有一点点不同。
1. 文本消息格式
回复文本
后台格式:
<xml>
<tousername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></tousername>
<fromusername><![cdata[gh_680bdefc8c5d]]></fromusername>
<createtime>1359036631</createtime>
<msgtype><![cdata[text]]></msgtype>
<content><![cdata[【深圳】天气实况 温度:27℃ 湿度:59% 风速:东北风3级
11月03日 周日 27℃~23℃ 小雨 东北风4-5级
11月04日 周一 26℃~21℃ 阵雨 微风
11月05日 周二 27℃~22℃ 阴 微风]]></content>
<funcflag>0</funcflag>
</xml>
xml格式讲解
fromusername 消息发送方
tousername 消息接收方
createtime 消息创建时间
msgtype 消息类型,文本消息必须填写text
content 消息内容,大小限制在2048字节,字段为空为不合法请求
funcflag 星标字段
2. 图文消息格式
2.1 单条图文消息
回复单条图文
后台格式:
<xml>
<tousername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></tousername>
<fromusername><![cdata[gh_680bdefc8c5d]]></fromusername>
<createtime>1359011899</createtime>
<msgtype><![cdata[news]]></msgtype>
<content><![cdata[]]></content>
<articlecount>1</articlecount>
<articles>
<item>
<title><![cdata[[苹果产品信息查询]]></title>
<description><![cdata[序列号:use imei number
imei号:358031058974471
设备名称:iphone 5c
设备颜色:
设备容量:
激活状态:已激活
电话支持:未过期[2014-01-13]
硬件保修:未过期[2014-10-14]
生产工厂:中国]]>
</description>
<picurl><![cdata[http://www.doucube.com/weixin/weather/icon/banner.jpg]]></picurl>
<url><![cdata[]]></url>
</item>
</articles>
<funcflag>0</funcflag>
</xml>
2.2 多图文消息
回复多图文
后台数据格式
<xml>
<tousername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></tousername>
<fromusername><![cdata[gh_680bdefc8c5d]]></fromusername>
<createtime>1359011829</createtime>
<msgtype><![cdata[news]]></msgtype>
<content><![cdata[]]></content>
<articlecount>5</articlecount>
<articles>
<item>
<title><![cdata[【深圳】天气实况 温度:3℃ 湿度:43﹪ 风速:西南风2级]]></title>
<description><![cdata[]]></description>
<picurl><![cdata[http://www.doucube.com/weixin/weather/icon/banner.jpg]]></picurl>
<url><![cdata[]]></url>
</item>
<item>
<title><![cdata[06月24日 周四 2℃~-7℃ 晴 北风3-4级转东南风小于3级]]></title>
<description><![cdata[]]></description>
<picurl><![cdata[http://www.doucube.com/weixin/weather/icon/d00.gif]]></picurl>
<url><![cdata[]]></url>
</item>
<item>
<title><![cdata[06月25日 周五 -1℃~-8℃ 晴 东南风小于3级转东北风3-4级]]></title>
<description><![cdata[]]></description>
<picurl><![cdata[http://www.doucube.com/weixin/weather/icon/d00.gif]]></picurl>
<url><![cdata[]]></url>
</item>
<item>
<title><![cdata[06月26日 周六 -1℃~-7℃ 多云 东北风3-4级转东南风小于3级]]></title>
<description><![cdata[]]></description>
<picurl><![cdata[http://www.doucube.com/weixin/weather/icon/d01.gif]]></picurl>
<url><![cdata[]]></url>
</item>
<item>
<title><![cdata[06月27日 周日 0℃~-6℃ 多云 东南风小于3级转东北风3-4级]]></title>
<description><![cdata[]]></description>
<picurl><![cdata[http://www.doucube.com/weixin/weather/icon/d01.gif]]></picurl>
<url><![cdata[]]></url>
</item>
</articles>
<funcflag>0</funcflag>
</xml>
xml格式讲解
fromusername 消息发送方
tousername 消息接收方
createtime 消息创建时间
msgtype 消息类型,图文消息必须填写news
content 消息内容,图文消息可填空
articlecount 图文消息个数,限制为10条以内
articles 多条图文消息信息,默认第一个item为大图
title 图文消息标题
description 图文消息描述
picurl 图片链接,支持jpg、png格式,较好的效果为大图640*320,小图80*80
url 点击图文消息跳转链接
funcflag 星标字段
3. 音乐消息
回复音乐消息
后台格式:
<xml>
<tousername><![cdata[ollb4jqgdo_crnvxk_wrnsywgtq8]]></tousername>
<fromusername><![cdata[gh_b629c48b653e]]></fromusername>
<createtime>1372310544</createtime>
<msgtype><![cdata[music]]></msgtype>
<music>
<title><![cdata[最炫民族风]]></title>
<description><![cdata[凤凰传奇]]></description>
<musicurl><![cdata[http://zj189.cn/zj/download/music/zxmzf.mp3]]></musicurl>
<hqmusicurl><![cdata[http://zj189.cn/zj/download/music/zxmzf.mp3]]></hqmusicurl>
</music>
<funcflag>0</funcflag>
</xml>
xml格式讲解
tousername 接收方帐号(收到的openid)
fromusername 开发者微信号
createtime 消息创建时间
msgtype 消息类型,此处为music
title 音乐标题
description 音乐描述
musicurl 音乐链接
hqmusicurl 高质量音乐链接,wifi环境优先使用该链接播放音乐
funcflag 位0x0001被标志时,星标刚收到的消息。
事件消息类型
目前用户在关注和取消关注,以及点击菜单的时候会自动向公众平台发送事件推送消息:
1. 关注事件
<xml>
<tousername><![cdata[gh_b629c48b653e]]></tousername>
<fromusername><![cdata[ollb4jv7la3tydjvijp5v9qtu_ka]]></fromusername>
<createtime>1372307736</createtime>
<msgtype><![cdata[event]]></msgtype>
<event><![cdata[subscribe]]></event>
<eventkey><![cdata[]]></eventkey>
</xml>
2. 取消关注事件
<xml>
<tousername><![cdata[gh_b629c48b653e]]></tousername>
<fromusername><![cdata[ollb4jqgdo_crnvxk_wrnsywgtq8]]></fromusername>
<createtime>1372309890</createtime>
<msgtype><![cdata[event]]></msgtype>
<event><![cdata[unsubscribe]]></event>
<eventkey><![cdata[]]></eventkey>
</xml>
3. 菜单点击事件
<xml>
<tousername><![cdata[gh_680bdefc8c5d]]></tousername>
<fromusername><![cdata[oidrpjqasytpnxrmps9o_ruzgsfk]]></fromusername>
<createtime>1377886191</createtime>
<msgtype><![cdata[event]]></msgtype>
<event><![cdata[click]]></event>
<eventkey><![cdata[天气深圳]]></eventkey>
</xml>
xml格式讲解
tousername 接收方微信号
fromusername 发送方微信号,若为普通用户,则是一个openid
createtime 消息创建时间
msgtype 消息类型,event
event 事件类型,subscribe(订阅)、unsubscribe(取消订阅)、click(自定义菜单点击事件)
eventkey 事件key值,与自定义菜单接口中key值对应
第六章 开发天气预报功能
这一章里,我们来快速开发天气预报功能、我们使用方倍工作室的相应接口来实现。下面代码实现了这样该功能。
<?php
/*
方倍工作室
copyright 2014 all rights reserved
*/
define("token", "weixin");
$wechatobj = new wechatcallbackapitest();
if (!isset($_get['echostr'])) {
$wechatobj->responsemsg();
}else{
$wechatobj->valid();
}
class wechatcallbackapitest
{
public function valid()
{
$echostr = $_get["echostr"];
if($this->checksignature()){
echo $echostr;
exit;
}
}
private function checksignature()
{
$signature = $_get["signature"];
$timestamp = $_get["timestamp"];
$nonce = $_get["nonce"];
$token = token;
$tmparr = array($token, $timestamp, $nonce);
sort($tmparr, sort_string);
$tmpstr = implode($tmparr);
$tmpstr = sha1($tmpstr);
if($tmpstr == $signature){
return true;
}else{
return false;
}
}
public function responsemsg()
{
$poststr = $globals["http_raw_post_data"];
if (!empty($poststr)){
$this->logger("r ".$poststr);
$postobj = simplexml_load_string($poststr, 'simplexmlelement', libxml_nocdata);
$rx_type = trim($postobj->msgtype);
switch ($rx_type)
{
case "event":
$result = $this->receiveevent($postobj);
break;
case "text":
$result = $this->receivetext($postobj);
break;
}
$this->logger("t ".$result);
echo $result;
}else {
echo "";
exit;
}
}
private function receiveevent($object)
{
$content = "";
switch ($object->event)
{
case "subscribe":
$content = "欢迎关注方倍工作室 ";
break;
}
$result = $this->transmittext($object, $content);
return $result;
}
private function receivetext($object)
{
$keyword = trim($object->content);$url = "http://apix.sinaapp.com/weather/?appkey=".$object->tousername."&city=".urlencode($keyword);
$output = file_get_contents($url);
$content = json_decode($output, true);
$result = $this->transmitnews($object, $content);
return $result;
}
private function transmittext($object, $content)
{
$texttpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[text]]></msgtype>
<content><![cdata[%s]]></content>
</xml>";
$result = sprintf($texttpl, $object->fromusername, $object->tousername, time(), $content);
return $result;
}
private function transmitnews($object, $newsarray)
{
if(!is_array($newsarray)){
return;
}
$itemtpl = " <item>
<title><![cdata[%s]]></title>
<description><![cdata[%s]]></description>
<picurl><![cdata[%s]]></picurl>
<url><![cdata[%s]]></url>
</item>
";
$item_str = "";
foreach ($newsarray as $item){
$item_str .= sprintf($itemtpl, $item['title'], $item['description'], $item['picurl'], $item['url']);
}
$newstpl = "<xml>
<tousername><![cdata[%s]]></tousername>
<fromusername><![cdata[%s]]></fromusername>
<createtime>%s</createtime>
<msgtype><![cdata[news]]></msgtype>
<content><![cdata[]]></content>
<articlecount>%s</articlecount>
<articles>
$item_str</articles>
</xml>";
$result = sprintf($newstpl, $object->fromusername, $object->tousername, time(), count($newsarray));
return $result;
}
private function logger($log_content)
{
}
}
?>
在公众账号中使用的命令如下:
1.发送城市名称,如“深圳”,可以查询该城市的天气
在你的公众账号输入相应的命令,实现效果类似如下所示:
第七章 小结
总的来说,通过本教程,你得到了以下收获:
1. 你通过本教程得到了一个免费的云计算空间2. 你成功启用了开发模式,并且实现了时间的自动回复3. 你非常快速地就体验了各种消息接收及发送,比方倍当年自己摸索所用的时间短了很多4. 你了解了微信公众平台开发的原理,并且熟悉了各种消息及发送是怎么一回事5. 你使用方倍工作室的接口,成功的开发了你的第一个微信公众平台功能——天气预报。
接下来该做什么呢?你可以学习开发一些基础的常用功能,推荐:方倍工作室 编写,机械工业出版社 出版的《微信公众平台开发最佳实践》,里面包含很多php开发技巧、数据库使用、及近30项微信公众平台实用功能或技术 。