Commit a99ea078 a99ea07812eaa2fe8ce382abc2fa653194a602b8 by lemon

参数

1 parent df004e7d
...@@ -173,6 +173,11 @@ class BaseController extends Controller ...@@ -173,6 +173,11 @@ class BaseController extends Controller
173 } 173 }
174 } 174 }
175 175
176 Log::channel('api')->info(__METHOD__.':签名参数', [
177 'appSecret'=>$this->appSecret,
178 '$params'=>$params,
179 ]);
180
176 return strtoupper(md5($this->appSecret . $params . $this->appSecret)); 181 return strtoupper(md5($this->appSecret . $params . $this->appSecret));
177 } 182 }
178 183
......