이 글은 주로 WeChat 공개 계정 개발을 위한 음성 메시지 인식 PHP 코드를 소개합니다. 관심 있는 친구들이 참고할 수 있습니다.
이 글의 예제는 모든 사람과 공유됩니다. 참고용 위챗 음성 메시지 인식 코드, 구체적인 내용은 다음과 같습니다
1. 음성 인식을 켭니다(기본적으로 꺼짐)
2. 음성 인식
음성 인식을 활성화한 후 사용자가 공식 계정에 음성 메시지를 보낼 때마다 WeChat은 푸시된 음성에 인식 필드를 추가합니다. 메시지 XML 패킷(참고: 클라이언트 캐싱으로 인해 개발자는 음성 인식 기능을 켜거나 끌 수 있습니다. 이 기능은 새로운 팔로워에게는 즉시 적용되고 이미 팔로우한 사용자에게는 24시간이 소요됩니다. 개발자는 테스트를 위해 이 계정을 다시 팔로우할 수 있습니다.) . 음성 인식을 활성화한 후의 음성 XML 데이터 패킷은 다음과 같습니다.
<?php /** * wechat php test */ //define your token define("TOKEN", "weixin"); $wechatObj = new wechatCallbackapiTest(); //$wechatObj->valid();//接口验证 $wechatObj->responseMsg();//调用回复消息方法 class wechatCallbackapiTest { public function valid() { $echoStr = $_GET["echostr"]; //valid signature , option if($this->checkSignature()){ echo $echoStr; exit; } } public function responseMsg() { //get post data, May be due to the different environments $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; //extract post data if (!empty($postStr)){ /* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection, the best way is to check the validity of xml by yourself */ libxml_disable_entity_loader(true); $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA); $fromUsername = $postObj->FromUserName; $toUsername = $postObj->ToUserName; $keyword = trim($postObj->Content); $time = time(); $msgType = $postObj->MsgType;//消息类型 $event = $postObj->Event;//时间类型,subscribe(订阅)、unsubscribe(取消订阅) $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>"; switch($msgType){ case "event": if($event=="subscribe"){ $contentStr = "Hi,欢迎关注海仙日用百货!"."\n"."回复数字'1',了解店铺地址."."\n"."回复数字'2',了解商品种类."; } break; case "text"://文本消息 switch($keyword){ case "1": $contentStr = "店铺地址:"."\n"."杭州市江干区."; break; case "2": $contentStr = "商品种类:"."\n"."杯子、碗、棉签、水桶、垃圾桶、洗碗巾(刷)、拖把、扫把、" ."衣架、粘钩、牙签、垃圾袋、保鲜袋(膜)、剪刀、水果刀、饭盒等."; break; default: $contentStr = "对不起,你的内容我会稍后回复"; } break; case "voice"://语音消息 //语音识别 $recognition = $postObj->Recognition; $format = $postObj->Format; $contentStr = "你发送的是语音消息"."\n"."语音格式为:"."\n".$format."\n"."语音内容为:"."\n".$recognition; break; } $msgType = "text"; $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); echo $resultStr; }else { echo ""; exit; } } private function checkSignature() { // you must define TOKEN by yourself if (!defined("TOKEN")) { throw new Exception('TOKEN is not defined!'); } $signature = $_GET["signature"]; $timestamp = $_GET["timestamp"]; $nonce = $_GET["nonce"]; $token = TOKEN; $tmpArr = array($token, $timestamp, $nonce); // use SORT_STRING rule sort($tmpArr, SORT_STRING); $tmpStr = implode( $tmpArr ); $tmpStr = sha1( $tmpStr ); if( $tmpStr == $signature ){ return true; }else{ return false; } } } ?>
위 글의 내용은 모두의 공부에 도움이 되었으면 좋겠습니다.