Comments - jstolpe/instagram-graph-api-php-sdk GitHub Wiki

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>' );
⚠️ **GitHub.com Fallback** ⚠️