Verification steps for php WeChat public platform development

Source: Internet
Author: User
We have done a lot of public platform development now. next we will introduce you to the basic knowledge of entry-level public platform verification. if you are interested, let's take a look at it. Verification is required during development. Where can the source code be stored in the official Developer Center. Log on to the... public platform for development. we have done a lot now. next we will introduce you to the basic knowledge of an entry-level public platform for verification. if you are interested, let's take a look at it.

Verification is required during development. Where can the source code be stored in the official Developer Center. After logging on to the public account, you can see a developer center on the left. Then fill in the corresponding Token and url, and then you can develop it if the verification is successful.

Download the php verification source code in the Developer Center-Developer Documentation-Interface Message-verify message authenticity-pull to the bottom to demonstrate php code

The downloaded code is as follows:

 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 = "
             
  %s
              
  %s
              
  
   %s
              
  %s
              
  %s
              
  
   0
              
 ";                         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, SORT_STRING);        $tmpStr = implode( $tmpArr );        $tmpStr = sha1( $tmpStr );        if( $tmpStr == $signature ){            return true;        }else{            return false;        }    }}?>

Modify the TOKEN you want and write the same in the Developer Center. During verification, $ wechatObj-> valid (); this section of code cannot be removed. After the verification is successful, we can comment out this section $ wechatObj-> valid (); and then use $ wechatObj-> responseMsg (); for testing.

Note: During development, you need to comment out $ wechatObj-> valid (); otherwise, nothing will be displayed during mobile phone testing.


Permanent link:

Reprint at will! Include the article address.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.