Commit 65808e65 65808e65e9db913bd167dcc71fad2dfc7cc508a7 by lemon

*

1 parent 5aa1f701
......@@ -144,6 +144,11 @@ class BaseController extends Controller
$params .= $k . $v;
}
}
var_dump($params);
var_dump($this->appSecret . $params . $this->appSecret);
exit();
// Log::channel('api')->info($params);
return strtoupper(md5($this->appSecret . $params . $this->appSecret));
}
......