Skip to content
Justin Stolpe edited this page May 21, 2022 · 6 revisions

Get posts a user has been tagged in.

use Instagram\User\Tags;

$config = array( // instantiation config params
    'user_id' => '<IG_USER_ID>',
    'access_token' => '<ACCESS_TOKEN>',
);

// instatiate tags for use
$tags = new Tags( $config );

// get posts user is tagged in
$userTags = $tags->getSelf();
Clone this wiki locally