IG Hashtag Top Media - jstolpe/instagram-graph-api-php-sdk GitHub Wiki
Get the most popular posts for a hashtag.
use Instagram\Hashtag\TopMedia;
$config = array( // instantiation config params
'user_id' => '<USER_ID>',
'hashtag_id' => '<HASHTAG_ID>', // id of the hashtag
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate top media for the hashtag
$topMedia = new TopMedia( $config );
// top media for a hashtag
$topMediaForHashtag = $topMedia->getSelf();