You can use the statigram cURL method, isnt Instagram API, but you can solve it. I use CodeIgniter and create a service to return XML, usign simple_xml_load to read the feed. Good Lucky.
$curl = curl_init(); curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($curl, CURLOPT_URL, "http://statigr.am/feed/cristiano"); $content = curl_exec($curl); curl_close($curl); $this->xml = simplexml_load_string($content, 'SimpleXMLElement', LIBXML_NOCDATA); echo json_encode($this->xml->channel);
josecatalani
source share