Get all media instagram. More than 33 picture

1.8k Views Asked by At

I am trying to use Instagram API to create a gallery with all my instagram pictures. But I have just 33 pictures in the gallery. Can you help me please?

    $media = $instagram->getUserMedia($userId);

    public function getUserMedia($id = 'self', $limit = 0) {
    return $this->_makeCall('users/' . $id . '/media/recent', ($id === 'self'), array('count' => $limit));

Kind regards.

1

There are 1 best solutions below

3
On

Pass your desired count of images to the recent media endpoint:

https://api.instagram.com/v1/users/%USER%/media/recent/?count=%MAX_COUNT%&AccessTokenOrClientID

In the response you will get a pagination containing a next_url value which you can use to fetch the next part until you receive no more next_urls in the response.