cosenary / Instagram-PHP-API

An easy-to-use PHP Class for accessing Instagram's API.
http://cosenary.github.com/Instagram-PHP-API
BSD 3-Clause "New" or "Revised" License
1.46k stars 781 forks source link

Pagination support for getUserFeed #41

Open dogctrl opened 10 years ago

dogctrl commented 10 years ago

Does this API support pagination calls for 'getUserFeed'?

GitTH commented 9 years ago

Yes but you must specify a limit of the number of results you'd like returned, eg:

$result = $instagram->getUserFeed(33);
$page2 = $instagram->pagination($result,33));