首页  >  问答  >  正文

微信公众平台 - thinkphp5微信服务器配置问题,为什么一直验证不了token

现在验证是通过了,就差返回给微信那边,我返回echostr还是true 微信那边都说我token验证失败

<?php
namespace app\index\controller;

use think\Request,think\Db;
use think\Cache;
class Autoreply extends RestBase{
    // 获取微信数据
    public function checktoken(){
        $request = Request::instance();
        $get = $request->param();
        $timestamp = $get['timestamp'];//timestamp其实就是一个时间戳  
        $nonce     = $get['nonce'];//nonce是一个随机参数  
        $token     = "";//这个token填写你在微信公众平台上写的那个值  
        $signature = $get['signature'];//这个signature其实就是在微信公众平台已经加密好的字符串  
        $echostr   = $get['echostr'];  
        $array = array();
        $array = array($token,$timestamp,$nonce);
        sort($array);
        $tmpstr = sha1(implode('',$array));  
        if($tmpstr == $signature){
            echo $get['echostr'];
        }else{
            return false;
        }
        
    }
}
高洛峰高洛峰2700 天前939

全部回复(1)我来回复

  • typecho

    typecho2017-06-17 09:17:26

    当你仔细查看过代码发现不了问题的时候,学会简单的调试还是比较重要的,比如看看接收到的微信参数是什么,再者看看你处理的结果是不是与你预期的相同。

    回复
    0
  • 取消回复