参数
Showing
1 changed file
with
1 additions
and
2 deletions
| ... | @@ -173,12 +173,11 @@ class BaseController extends Controller | ... | @@ -173,12 +173,11 @@ class BaseController extends Controller |
| 173 | } | 173 | } |
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | echo $params; | ||
| 177 | exit(); | ||
| 178 | 176 | ||
| 179 | Log::channel('api')->info(__METHOD__.':签名参数', [ | 177 | Log::channel('api')->info(__METHOD__.':签名参数', [ |
| 180 | 'appSecret'=>$this->appSecret, | 178 | 'appSecret'=>$this->appSecret, |
| 181 | '$params'=>$params, | 179 | '$params'=>$params, |
| 180 | 'sign'=>strtoupper(md5($this->appSecret . $params . $this->appSecret)), | ||
| 182 | ]); | 181 | ]); |
| 183 | 182 | ||
| 184 | return strtoupper(md5($this->appSecret . $params . $this->appSecret)); | 183 | return strtoupper(md5($this->appSecret . $params . $this->appSecret)); | ... | ... |
-
Please register or sign in to post a comment