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)); }