博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ThinkPHP 3.2.3响应微信发送的Token验证失败
阅读量:5871 次
发布时间:2019-06-19

本文共 1009 字,大约阅读时间需要 3 分钟。

1、服务器配置是阿里云的linux

2、下载微信的Token验证Demo,放于根目录测试链接没有任何问题:

URL
Token weixin

3、将验证代码置于TP框架中(application/Weixin/Controller/IndexController.php):

<?php
namespace Wxapi\Controller;

use Think\Controller;

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();

转载于:https://blog.51cto.com/13238147/2313609

你可能感兴趣的文章
稳扎稳打Silverlight(25) - 2.0线程之Thread, Timer, BackgroundWorker, ThreadPool
查看>>
LAMP下http跳转到 https
查看>>
稳扎稳打Silverlight(30) - 2.0Tip/Trick之Silverlight.js, Silverlight.supportedUserAgent.js
查看>>
ZigBee TI ZStack CC2530 8.4 如何用高版本IAR打开低版本协议栈
查看>>
Unity手游iOS内存分析和测试
查看>>
一起学Shell之(六)输入、输出、文件与命令执行
查看>>
windows2003修改远程桌面连接数
查看>>
quickServer介绍
查看>>
笔记:AIX系统/var/adm/wtmp大文件处理
查看>>
Heartbeat(v1、v2、pacemaker)集群组件概述
查看>>
windows 系统更新 WSUS的安装与部属
查看>>
没有流氓软件,只有流氓行为
查看>>
1-4 多文档界面处理(2)
查看>>
Linux shell中比较操作符“==”与“-eq”对比
查看>>
配置Windows Server2008故障转移集群
查看>>
SQL Server 审计功能-记录所有的操作记录
查看>>
Pandas(鸢尾花案例:groupby, agg, apply)
查看>>
特斯拉年底在华建厂,但自动驾驶高管谷俊丽被小鹏汽车挖角了
查看>>
C#中几种代码复用的方式
查看>>
使用Weka进行数据挖掘
查看>>