Tell me how is possible using php to put the number of subscribers of the specified profile in instagram.
Maybe there is a ready script for this
Tried using curl did not work, does not display the number
<?php$url = 'https://www.instagram.com/arina_ramina/';$curl = curl_init();$options = [CURLOPT_URL => $url CURLOPT_RETURNTRANSFER => true, THIS => false, CURLOPT_CONNECTTIMEOUT => 20, CURLOPT_TIMEOUT => 20, CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0', CURLOPT_REFERER => 'https://www.instagram.com/', ]; curl_setopt_array($curl, $options); $html = curl_exec($curl); curl_close($curl); //subscribers preg_match('#"edge_followed_by": {"count": (\\d{1,10})}#isu',$html, $finded); $followers = $finded[1]; echo 'Subscribers: '.$followers; ?>