ThinkPHP 3.2.3响应微信发送的Token验证失败
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP 3.2.3响应微信发送的Token验证失败相关的知识,希望对你有一定的参考价值。
1、服务器配置是阿里云的linux
2、下载微信的Token验证Demo,放于根目录测试链接没有任何问题:
URL http://www.XXX.com/wx_sample.php
Token weixin
3、将验证代码置于TP框架中(application/Weixin/Controller/IndexController.php):
<?php
namespace WxapiController;
use ThinkController;
class IndexController extends Controller
{
function index()
{
define(‘TOKEN‘,‘weixin‘);
// $this->valid();
if (!isset($_GET[‘echostr‘])) {
$this->responseMsg();
} else {
$this->valid();
}
}
//接收消息验证
public function valid()
{
$echoStr = $_GET["echostr"];
$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) {
ob_clean(); //增加的一行
echo $echoStr;
exit;
}
}
通过访问:
URL http://www.XXX.com/index.php/Weixin/Index/index
Token weixin
配置始终失败!
4、问题所在:Thinkephp框架index入口文件utf-8编码返回BOM头问题
5、解决方式:
(1)去掉index.php的BOM头。可以用编程工具新建一个index.php,重新写入代码替换掉入口文件
(2)在echo $echoStr; 前增加语句ob_clean();
以上是关于ThinkPHP 3.2.3响应微信发送的Token验证失败的主要内容,如果未能解决你的问题,请参考以下文章