PHP-Instagram-API icon indicating copy to clipboard operation
PHP-Instagram-API copied to clipboard

Implement remaining requests check on the proxy/client

Open mpatnode opened this issue 10 years ago • 0 comments

In short the ApiResponse copies the latest remainder count into the current client.

    $instagram = new Instagram\Instagram;
    $instagram->setClientID(INSIGHTS_INSTAGRAM_CLIENT_ID);

    / /  Make lots of requests....

    $count = $instagram->getRequestsRemaining();

    if ($count < 10) {
             //  Do something about it
    }

mpatnode avatar Oct 13 '14 21:10 mpatnode