早睡早起,方能养生
Sleep early rise early, way to keep healthy

PHP 微信公众号开发 验证Token

super
2018-12-03 17:22
views 2779

在开发微信公众号的时候,我们有时候要填写服务器配置

image.png

但是这里的Token我们不知道是什么意思,随便写一个的话,提示不正确,

今天咱们一起来看怎么验证这个Token


首先填写url,接受微信发送数据的地址

在这个方法里面写:

public function weChat()
{
    define("TOKEN", "testtesttesttest");
    $this->valid();
}

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方法define定义的Token,要与我们在图一中的Token的值相对应

都设置好了之后,再确认-》

image.png




分享
0 条讨论
top