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.

Code

use Instagram\User\ContentPublishingLimit;

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

// instantiate and get the users content publishing limit
$contentPublishingLimit = ( new ContentPublishingLimit( $config ) )->getSelf();
Clone this wiki locally