1. Go to this page and download the library: Download cnrp/laravel-instagram-feed 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/ */
use CNRP\InstagramFeed\Facades\InstagramFeed;
// Get a profile
$profile = \CNRP\InstagramFeed\Models\InstagramProfile::find($profileId);
// Refresh the feed for a profile
InstagramFeed::refreshFeed($profile);
// Get the feed for a profile
$feed = InstagramFeed::getFeed($profile);