From e2c270392e72fdf06bfb8e6268d5ac7739f2ca2e Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Tue, 13 Oct 2020 18:20:51 +0800 Subject: [PATCH] =?UTF-8?q?modified=20=E4=BC=98=E5=8C=96Token=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/middleware/ApiAuth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/middleware/ApiAuth.php b/app/middleware/ApiAuth.php index 1e9610f..3197393 100644 --- a/app/middleware/ApiAuth.php +++ b/app/middleware/ApiAuth.php @@ -7,12 +7,13 @@ use app\model\AdminApp; use app\model\AdminList; use app\util\ReturnCode; use think\facade\Cache; +use think\Request; class ApiAuth { /** * 获取接口基本配置参数,校验接口Hash是否合法,校验APP_ID是否合法等 - * @param $request + * @param Request $request * @param \Closure $next * @return mixed|\think\response\Json * @throws \think\db\exception\DataNotFoundException @@ -50,7 +51,6 @@ class ApiAuth { } } - $accessToken = $request->header('Access-Token', ''); if (!$accessToken) { if ($apiInfo['method'] == 2) {