-
Notifications
You must be signed in to change notification settings - Fork 30
Comments
Justin Stolpe edited this page May 21, 2022
·
2 revisions
Get comments for a media post.
Get comments for a specified media post.
use Instagram\Media\Comments;
$config = array( // instantiation config params
'user_id' => '<IG_USER_ID>',
'media_id' => '<MEDIA_ID>', // id of post to get comments on
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate comments
$comments = new Comments( $config );
// get comments on the media
$mediaComments = $comments->getSelf();
Post a comment on a users media post.
use Instagram\Media\Comments;
$config = array( // instantiation config params
'user_id' => '<IG_USER_ID>',
'media_id' => '<MEDIA_ID>', // id of post to post comment on
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate comments
$comments = new Comments( $config );
// post comment
$comment = $comments->create( '<COMMENT>' );