|
|
|
@ -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']); |
|
|
|
|