From ff0136f2d10043a3c771cf0cbe8759ac254eae1c Mon Sep 17 00:00:00 2001 From: wang hou sheng <76928547+wanghousheng@users.noreply.github.com> Date: Wed, 10 Apr 2024 18:31:24 +0800 Subject: [PATCH] 1 --- app/common/library/wxserver/Server.php | 3 +++ 1 file changed, 3 insertions(+) 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']);