getAccessToken(); $apiUrl = "http://api.weixin.qq.com/wxa/business/getliveinfo?access_token={$accessToken}"; // 请求参数 $params = $this->jsonEncode(['start' => 0, 'limit' => 100]); // 执行请求 $result = $this->post($apiUrl, $params); // 记录日志 $this->doLogs(['describe' => '微信小程序直播-获取直播房间列表接口', 'url' => $apiUrl, 'params' => $params, 'result' => $result]); // 返回结果 $response = $this->jsonDecode($result); if (!isset($response['errcode'])) { $this->error = 'not found errcode'; return false; } if ($response['errcode'] != 0) { $this->error = $response['errmsg']; return false; } return $response; } }