温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

ThinkPHP 3.2.3响应微信发送的Token验证失败

发布时间:2020-07-04 11:36:40 来源:网络 阅读:1013 作者:daydaydream 栏目:web开发

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

2、下载微信的Token验证Demo,放于根目录测试链接没有任何问题:
URL http://www.XXX.com/wx_sample.php
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();

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI