mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
modified 优化Token获取方式
This commit is contained in:
parent
b47aa8c985
commit
e2c270392e
@ -7,12 +7,13 @@ use app\model\AdminApp;
|
|||||||
use app\model\AdminList;
|
use app\model\AdminList;
|
||||||
use app\util\ReturnCode;
|
use app\util\ReturnCode;
|
||||||
use think\facade\Cache;
|
use think\facade\Cache;
|
||||||
|
use think\Request;
|
||||||
|
|
||||||
class ApiAuth {
|
class ApiAuth {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取接口基本配置参数,校验接口Hash是否合法,校验APP_ID是否合法等
|
* 获取接口基本配置参数,校验接口Hash是否合法,校验APP_ID是否合法等
|
||||||
* @param $request
|
* @param Request $request
|
||||||
* @param \Closure $next
|
* @param \Closure $next
|
||||||
* @return mixed|\think\response\Json
|
* @return mixed|\think\response\Json
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
@ -50,7 +51,6 @@ class ApiAuth {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$accessToken = $request->header('Access-Token', '');
|
$accessToken = $request->header('Access-Token', '');
|
||||||
if (!$accessToken) {
|
if (!$accessToken) {
|
||||||
if ($apiInfo['method'] == 2) {
|
if ($apiInfo['method'] == 2) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user