php token驗證失敗的解決方法:1、保障添加的伺服器是聯通,並且url是能夠存取;2、token不能重複;3、伺服器上的token要改時,要和設定表單上的一致。
php token驗證失敗的解決方案:
##這裡附上設定表單,token驗證失敗的資訊。 後來看了下文檔,如下#要返回參數給微信,返回成功則成為開發者;
所以準備好的程式碼respond.php: <?php /** * wechat php test */ //define your token define("TOKEN", "hwqhwq"); $wechatObj = new wechatCallbackapiTest(); $wechatObj->valid(); 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; } } } ?>
只要兩個條件就可以驗證成功
一、你的伺服器一定是通的,保證你url是能訪問的。 二、token最好是不要跟別人重複的;三、伺服器上的token要改,要有設定表單上的一樣,他們對應就可以了相關學習推薦:#
以上是php token驗證失敗怎麼辦?的詳細內容。更多資訊請關注PHP中文網其他相關文章!