modified 文档部分兼容普通模式和加密模式

This commit is contained in:
zhaoxiang 2020-03-29 20:47:47 +08:00
parent cbdfab5f52
commit aa5e714ceb
2 changed files with 8 additions and 5 deletions

View File

@ -15,7 +15,7 @@ class BuildToken extends Base {
/**
* 构建AccessToken
* @return \think\response\Json
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
@ -23,9 +23,6 @@ class BuildToken extends Base {
*/
public function getAccessToken() {
$param = $this->request->param();
if (empty($param['app_id'])) {
return $this->buildFailed(ReturnCode::EMPTY_PARAMS, '缺少app_id');
}
$appInfo = (new AdminApp())->where(['app_id' => $param['app_id'], 'app_status' => 1])->find();
if (empty($appInfo)) {
return $this->buildFailed(ReturnCode::INVALID, '应用ID非法');

View File

@ -154,12 +154,18 @@ class Api extends Base {
$groupInfo->hot = $groupInfo->hot + 1;
$groupInfo->save();
if ($apiList['hash_type'] === 1) {
$url = $this->request->domain() . '/api/' . $apiList['api_class'];
} else {
$url = $this->request->domain() . '/api/' . $hash;
}
return $this->buildSuccess([
'request' => $request,
'response' => $response,
'dataType' => $dataType,
'apiList' => $apiList,
'url' => $this->request->domain() . '/api/' . $hash,
'url' => $url,
'co' => config('apiadmin.APP_NAME') . ' ' . config('apiadmin.APP_VERSION')
]);
}