-
Notifications
You must be signed in to change notification settings - Fork 30
Tags
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();