Tags - jstolpe/instagram-graph-api-php-sdk GitHub Wiki
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();