PHP code example of aunhurian / instagram-parser
1. Go to this page and download the library: Download aunhurian/instagram-parser library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aunhurian / instagram-parser example snippets
use Mineur\InstagramParser\Instagram;
use Mineur\InstagramParser\Model\InstagramPost;
$queryHash = '298b92c8d7cad703f7565aa892ede943';
Instagram::createTagParser($queryHash)
->parse('github', function(InstagramPost $post) {
dump($post);
});