|
@@ -60,6 +60,7 @@ class Base extends Controller
|
|
|
$key = md5(config('app.jwt'));
|
|
|
try {
|
|
|
$check_authorization = JWT::decode($authorization, $key, array('HS256'));
|
|
|
+ var_dump($check_authorization);
|
|
|
if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
|
|
|
$authInfo = json_decode(json_encode($check_authorization['data']), true);
|
|
|
if (!empty($authInfo['uid'])) {
|