微信公众号开发之语音消息识别
2018-06-22 04:54:29来源:未知 阅读 ()
1.开通语音识别(默认关闭)
2.语音识别
请注意,开通语音识别后,用户每次发送语音给公众号时,微信会在推送的语音消息XML数据包中,增加一个Recognition字段(注:由于客户端缓存,开发者开启或者关闭语音识别功能,对新关注者立刻生效,对已关注用户需要24小时生效。开发者可以重新关注此帐号进行测试)。开启语音识别后的语音XML数据包如下:
1 <?php 2 /** 3 * wechat php test 4 */ 5 6 //define your token 7 define("TOKEN", "weixin"); 8 $wechatObj = new wechatCallbackapiTest(); 9 //$wechatObj->valid();//接口验证 10 $wechatObj->responseMsg();//调用回复消息方法 11 class wechatCallbackapiTest 12 { 13 public function valid() 14 { 15 $echoStr = $_GET["echostr"]; 16 17 //valid signature , option 18 if($this->checkSignature()){ 19 echo $echoStr; 20 exit; 21 } 22 } 23 24 public function responseMsg() 25 { 26 //get post data, May be due to the different environments 27 $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; 28 29 //extract post data 30 if (!empty($postStr)){ 31 /* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection, 32 the best way is to check the validity of xml by yourself */ 33 libxml_disable_entity_loader(true); 34 $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA); 35 $fromUsername = $postObj->FromUserName; 36 $toUsername = $postObj->ToUserName; 37 $keyword = trim($postObj->Content); 38 $time = time(); 39 $msgType = $postObj->MsgType;//消息类型 40 $event = $postObj->Event;//时间类型,subscribe(订阅)、unsubscribe(取消订阅) 41 42 $textTpl = "<xml> 43 <ToUserName><![CDATA[%s]]></ToUserName> 44 <FromUserName><![CDATA[%s]]></FromUserName> 45 <CreateTime>%s</CreateTime> 46 <MsgType><![CDATA[%s]]></MsgType> 47 <Content><![CDATA[%s]]></Content> 48 <FuncFlag>0</FuncFlag> 49 </xml>"; 50 51 switch($msgType){ 52 case "event": 53 if($event=="subscribe"){ 54 $contentStr = "Hi,欢迎关注海仙日用百货!"."\n"."回复数字'1',了解店铺地址."."\n"."回复数字'2',了解商品种类."; 55 } 56 break; 57 case "text"://文本消息 58 switch($keyword){ 59 case "1": 60 $contentStr = "店铺地址:"."\n"."杭州市江干区."; 61 break; 62 case "2": 63 $contentStr = "商品种类:"."\n"."杯子、碗、棉签、水桶、垃圾桶、洗碗巾(刷)、拖把、扫把、" 64 ."衣架、粘钩、牙签、垃圾袋、保鲜袋(膜)、剪刀、水果刀、饭盒等."; 65 break; 66 default: 67 $contentStr = "对不起,你的内容我会稍后回复"; 68 } 69 break; 70 case "voice"://语音消息 71 //语音识别 72 $recognition = $postObj->Recognition; 73 $format = $postObj->Format; 74 $contentStr = "你发送的是语音消息"."\n"."语音格式为:"."\n".$format."\n"."语音内容为:"."\n".$recognition; 75 break; 76 } 77 $msgType = "text"; 78 $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); 79 echo $resultStr; 80 }else { 81 echo ""; 82 exit; 83 } 84 } 85 86 private function checkSignature() 87 { 88 // you must define TOKEN by yourself 89 if (!defined("TOKEN")) { 90 throw new Exception('TOKEN is not defined!'); 91 } 92 93 $signature = $_GET["signature"]; 94 $timestamp = $_GET["timestamp"]; 95 $nonce = $_GET["nonce"]; 96 97 $token = TOKEN; 98 $tmpArr = array($token, $timestamp, $nonce); 99 // use SORT_STRING rule 100 sort($tmpArr, SORT_STRING); 101 $tmpStr = implode( $tmpArr ); 102 $tmpStr = sha1( $tmpStr ); 103 104 if( $tmpStr == $signature ){ 105 return true; 106 }else{ 107 return false; 108 } 109 } 110 } 111 112 113 ?>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 微信公众平台开发之配置与请求 2019-09-23
- 微信支付:chooseWXPay:fail, the permission value is offl 2019-07-24
- 微信支付和微信支付通知基于sdk的说明 2019-07-24
- 微信支付H5支付开发文档 2019-07-23
- PHP---微信JS-SDK获取access_token/jsapi_ticket/signature 2019-07-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash