• <dl id="2u8ki"><small id="2u8ki"></small></dl>
    • <rt id="2u8ki"><em id="2u8ki"></em></rt>
    • <menu id="2u8ki"></menu>
      0712-2888027 189-8648-0214
      微信公眾號

      孝感風(fēng)信網(wǎng)絡(luò)科技有限公司微信公眾號

      當(dāng)前位置:主頁 > 技術(shù)支持 > PHP > 微信公眾號token驗證php代碼

      微信公眾號token驗證php代碼

      時間:2017-11-08來源:風(fēng)信官網(wǎng) 點擊: 1623次
      微信公眾號開發(fā)過程中,都是使用自有服務(wù)器,所以我們需要對現(xiàn)有公眾號進(jìn)行配置,才能將公眾號中的消息轉(zhuǎn)發(fā)到自有服務(wù)器上,但很多時候,我們在公眾號平臺服務(wù)器配置已經(jīng)填寫正確的信息,提交確認(rèn)信息的時候,總是提示:token驗證失敗,很是惱火,借助以下php代碼,可快速驗證服務(wù)器令牌(Token)的有效性。
      微信公眾號token驗證php代碼

      微信公眾號token驗證php代碼如下:

      <?php
      /**
       * wechat php test
       * update time: 20141008
       */
      //define your token
      define("TOKEN", "weixin");
      $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 (!emptyempty($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(!emptyempty( $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, SORT_STRING);
              $tmpStr = implode( $tmpArr );
              $tmpStr = sha1( $tmpStr );
              if( $tmpStr == $signature ){
                  return true;
              }else{
                  return false;
              }
          }
      }
      ?>
      熱門關(guān)鍵詞: 微信公眾號 token驗證 php代碼
      欄目列表
      推薦內(nèi)容
      熱點內(nèi)容
      展開
      中文字幕无码AV黄片,亚洲天堂日本美女,国产亚洲色婷婷久久99精品91,午夜无码不卡视频 99久色图精品国产 精品熟女少妇A∨免费久久
    • <dl id="2u8ki"><small id="2u8ki"></small></dl>
      • <rt id="2u8ki"><em id="2u8ki"></em></rt>
      • <menu id="2u8ki"></menu>