|
|
@@ -26,7 +26,7 @@ class CheckSign
|
|
|
$nonce = $request->header('nonce', '');
|
|
|
$timestamp = $request->header('timestamp', '');
|
|
|
if (!$token) {
|
|
|
- $token = getProp($params, 'd_token');
|
|
|
+ $token = $request->input('d_token', '');
|
|
|
if (!$token) Utils::throwError(ErrorConst::NOT_LOGIN);
|
|
|
}
|
|
|
|