modified 优化Token获取方式

This commit is contained in:
zhaoxiang 2020-10-13 18:20:51 +08:00
parent b47aa8c985
commit e2c270392e

View File

@ -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) {