为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

PHP
波斯汪 2019-03-18 18:06:08
现在验证是通过了,就差返回给微信那边,我返回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; } } }
查看完整描述

2 回答

?
FFIVE

TA贡献1797条经验 获得超6个赞

自己已经解决 我的解决办法就是加一个头部声明传过去是以utf-8编码,因为你的数据可能传过去是乱码的.

header("Content-type: text/html; charset=utf-8");
查看完整回答
反对 回复 2019-03-18
  • 2 回答
  • 0 关注
  • 509 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信