Здравствуйте, запрос:
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $params['timeout']);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($ch);
Возвращает строку, но эта строка не json, а просто строка с набором параметров:
HTTP/1.1 301 Moved Permanently Server: nginx Date: Fri, 22 Jan 2021 09:26:03 GMT Content-Type: text/html Content-Length: 178 Location: ***** Connection: keep-alive.....
Почему строка возвращается в таком виде и как сделать чтобы curl возвращал json строку?