bombbomb / BBCore

A Javascript API to use BombBomb services
4 stars 12 forks source link

Examples has a getVideos. #26

Closed bay-lylekarstensen closed 6 years ago

bay-lylekarstensen commented 6 years ago

In the example the getVideos function has a page of 1.

bbInstance.getVideos({ page: 1, pageSize: 100 }, function (data) {

This should be page: 0. Your api is Zero based so the videos do not show which causes confusion.

bbInstance.getVideos({ page: 0, pageSize: 100 }, function (data) {

Zoey4560 commented 6 years ago

Thanks for catching this. We've updated the examples to match.