stevenmaguire / trello-php

A php client for consuming the Trello API
MIT License
87 stars 25 forks source link

support of paging? #22

Closed bzhang4sacstate closed 7 years ago

bzhang4sacstate commented 7 years ago

Hi Steven,

Is paging (https://developers.trello.com/get-started/intro#paging) supported with this implementation? I am trying to get all cards of a board and all the actions of a card.

Thanks

stevenmaguire commented 7 years ago

Yes, I believe it does support that. Give this a try. I've just added a test case to demonstrate and exercise this functionality.

$parameters = ['before' => '2016-11-30'];
$cards = $client->getBoardCards('some-board-id', $parameters);