-
Notifications
You must be signed in to change notification settings - Fork 30
Mentioned Media
Justin Stolpe edited this page May 21, 2022
·
2 revisions
Data on the post the user was mentioned in.
use Instagram\User\MentionedMedia;
$config = array( // instantiation config params
'user_id' => '<IG_USER_ID>',
'media_id' => '<MEDIA_ID>', // id of post the user was mentioned
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate mentioned media
$mentionedMedia = new MentionedMedia( $config );
// get data on the mentioned media
$mentionedMediaInfo = $mentionedMedia->getSelf();