IG User Content Publishing Limit - jstolpe/instagram-graph-api-php-sdk GitHub Wiki
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();