微信公众号开发启用服务器配置提交token验证失败 php

时间:2020-04-16
本文章向大家介绍微信公众号开发启用服务器配置提交token验证失败 php,主要包括微信公众号开发启用服务器配置提交token验证失败 php使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

URL写到根域名即可(www.abc.com),token随便写,EncodingAESKey自动生成,加密方式明文模式。

php验证代码

public function checkToken()
    {
        header("Content-type: text/html; charset=utf-8");

        //1.将timestamp,nonce,toke按字典顺序排序
        $timestamp = $_GET['timestamp'];
        $nonce = $_GET['nonce'];
        $token = 'asd123456zxc';
        $signature = $_GET['signature'];
        $array = array($timestamp,$nonce,$token);
        //2.将排序后的三个参数拼接之后用sha1加密
        $tmpstr = implode('',$array);
        $tmpstr = sha1($tmpstr);
        //3.将加密后的字符串与signature进行对比,判断该请求是否来自微信
        if($tmpstr == $signature){
            echo $_GET['echostr'];
            exit;
        }
    }

注意:如果配置都是正确的,但是一直就是token验证失败,可能是因为编码问题,加上“header("Content-type: text/html; charset=utf-8");”即可

原文地址:https://www.cnblogs.com/zxf100/p/12713297.html