|
@@ -82,9 +82,7 @@ class Base extends Controller
|
|
|
if(empty($authorization) || $authorization == null){
|
|
|
return false;
|
|
|
}
|
|
|
- var_dump(JWT::decode($authorization, $key, array('HS256')));
|
|
|
$jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
|
|
|
- var_dump($jwtAuth);
|
|
|
$authInfo = json_decode($jwtAuth, true);
|
|
|
if (!empty($authInfo['uid'])) {
|
|
|
$member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
|