I am using http://issuu.com site in laravel for uploading documents and retrieving listing of it. I have a problem in fetching list from site. I want to get all records from http://issuu.com. I have used code
$issuu = new Issuu('--my API key--', '--my API secret--');
$documents = new Documents($issuu);
$documentsList = $documents->list();
using above code i only get 0 to 9 records from all document list. I want to retrieve all records from that site.How can i get all documents list those are uploaded on that site?? can anyone please help me!