Skip to content

IG Hashtag Top Media

Justin Stolpe edited this page May 21, 2022 · 4 revisions

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();
Clone this wiki locally