Skip to content

Comments

Justin Stolpe edited this page May 21, 2022 · 2 revisions

Get comments for a media post.

Getting Comments

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();

Creating Comments

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>' );
Clone this wiki locally