먼저 WeChat 공개 계정을 신청해야 합니다. 이 공개 계정은 회사 소유이므로 모든 사람에게 공개하는 것이 편리하지 않습니다! 저는 단순히 취업에 지원하는 것만으로도 문제가 되지 않을 것이라고 믿습니다! 응용 프로그램이 성공적으로 완료되면 아래와 같이 메뉴 표시줄에 "고급 기능"이 나타납니다.
"편집 모드"와 ""의 두 가지 모드 중에서 선택할 수 있습니다. 개발모드', 위 모두 자세하게 설명되어 있으니 더 이상 설명하지 않으셨으면 좋겠습니다!
여기에서는 개발 모드에 대해 이야기하겠습니다. 자, 이제 개발 모드 설명에 들어갑니다!
그런 다음 아래와 같이 URL과 토큰 값을 구성합니다.
URL: 데모를 넣을 액세스 URL을 입력합니다. 예: http://www .123.com/wx_sample.php
토큰: 이 값은 아무렇게나 작성할 수 있습니다.
wx_sample.php 파일을 열고 아래 내용을 수정하세요
define("TOKEN", "weixin"); //修改成自己填写的token
작성 후 제출하시면 됩니다!
검증이 성공한 후 다음과 같이 간단한 예제를 작성하여 테스트할 수 있습니다.
<?php /** * wechat php test */ // define // your // token define("TOKEN", "weixin"); $wechatObj = new wechatCallbackapiTest(); $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)) { $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(!empty($keyword)) { $msgType = "text"; $contentStr = "Welcome to wechat world!"; $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); echo $resultStr; } else { echo "Input something..."; } } else { echo ""; 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; } } } ?>
가장 간단한 응답 메시지가 완성되었습니다!
위 내용은 WeChat 개발 튜토리얼 시리즈(1)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!