|
...
|
...
|
@@ -235,6 +235,11 @@ class LoginController extends BaseController |
|
|
|
* @time :2023/8/24 17:37
|
|
|
|
*/
|
|
|
|
public function globalSo_v6_login(UserLoginLogic $logic){
|
|
|
|
$this->param = $this->request->validate([
|
|
|
|
'token' => 'required',
|
|
|
|
],[
|
|
|
|
'token.required' => 'token不能为空',
|
|
|
|
]);
|
|
|
|
try {
|
|
|
|
$common = new Common();
|
|
|
|
$arr = $common->decrypt(urldecode($this->param['token']));
|
...
|
...
|
|