Skip to content

IG User Content Publishing Limit

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

Get a Instagram users content publishing usage.

use Instagram\User\ContentPublishingLimit;

$config = array( // instantiation config params
    'user_id' => '<IG_USER_ID>',
    'access_token' => '<ACCESS_TOKEN>',
);

// instantiate content publishing limit
$contentPublishingLimit = new ContentPublishingLimit( $config );

// get info
$contentPublishingLimitInfo = $contentPublishingLimit->getSelf();
Clone this wiki locally