收藏
回答

微信公众号服务器配置token验证失败

https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Access_Overview.html


  $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;
    }


请问按照这个配置 为什么老是 token验证失败

回答关注问题邀请回答
收藏

1 个回答

  • 坏丶银~
    坏丶银~
    2020-11-13

    运行的程序后缀要加上去,醉了

    xxxxxx.com/index.php

    2020-11-13
    有用
    回复
登录 后发表内容
问题标签