From db6d6a0611f74763021dab502a103084b9751289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Fri, 3 Apr 2020 17:54:13 +0800 Subject: [PATCH] add clear --- wchat/qq/SecCheck.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wchat/qq/SecCheck.php b/wchat/qq/SecCheck.php index e7a1095..e1ba32f 100644 --- a/wchat/qq/SecCheck.php +++ b/wchat/qq/SecCheck.php @@ -54,10 +54,10 @@ class SecCheck extends SmallProgram $this->request->setIsSSL(true); $url = $this->_msgUrl . $this->config->getAccessToken(); - return $this->request->post($url, [ + return $this->request->post($url, json_encode([ 'appid' => $this->config->getAppid(), 'content' => $content - ]); + ], JSON_UNESCAPED_UNICODE)); }