diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index 1a9aa0c..639447e 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -623,7 +623,6 @@ class HttpClient private function curl($url, $data = []) { try { - var_dump($url); $output = $this->curlParse($url, $data); if ($output === FALSE) { return new Result(['code' => 500, 'message' => $output]); @@ -660,6 +659,7 @@ class HttpClient } curl_setopt($ch, CURLOPT_HEADER, true); + var_dump($url, $this->parseHeaderMat()); if ($headers = $this->parseHeaderMat()) { curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); }