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.
Pass your desired count of images to the recent media endpoint:
In the response you will get a
pagination
containing anext_url
value which you can use to fetch the next part until you receive no morenext_url
s in the response.