Получаю список постов
$get_page = $this->Geturl($account['url']);
preg_match_all("/(shortcode\":\")([a-zA-Z0-9_-]{9,11})/", "$get_page", $materials_posted);
public function Geturl($instlogin)
{
$chs = curl_init();
curl_setopt($chs, CURLOPT_URL, $instlogin);
curl_setopt($chs, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36');
curl_setopt($chs, CURLOPT_HEADER, true);
curl_setopt($chs, CURLOPT_TIMEOUT, 10);
curl_setopt($chs, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($chs,CURLOPT_RETURNTRANSFER,1);
$answer = curl_exec($chs);
return $answer;
curl_close($chs);
}
В ответ получаю список, список с постами. Но таким образом, вытаскиваются и записи с вкладки IGTV
Как мне убрать их из результата?