diff --git a/app/common/library/wxserver/Server.php b/app/common/library/wxserver/Server.php index 2b859cc4..77c758ee 100644 --- a/app/common/library/wxserver/Server.php +++ b/app/common/library/wxserver/Server.php @@ -555,10 +555,13 @@ class Server { $access_token = $this->authorizerAccessToken($appid); if ($access_token && $auditid) { + dump('11111'); $url = 'https://api.weixin.qq.com/wxa/get_auditstatus?access_token=' . $access_token; $data['auditid'] = $auditid; $result = $this->curlPost($url, json_encode($data)); $result = json_decode($result, true); + dump($result); + exit(); return $result; if (!empty($result) && intval($result['errcode']) == 0 && isset($result['status'])) { $status = intval($result['status']);