I am trying to get pages using bridge search but the returned JSON data is always the same, no matter which page I request.
Here is the request form:
http://my.awesome.jamroom.dom/api/bridge/tracks/search?pagebreak=20&page=3&limit=200
And I get this info in response:
{
"code": 200
"text": "OK"
"data": {
"_items": [20]
···
"info": {
"total_items": 100
"total_pages": 5
"next_page": 2
"pagebreak": 20
"page": 1
"this_page": 1
"prev_page": 0
}
}
}
It was supposed to return "next_page": 4 and "this_page":3.
Is this any issue or am I doing something wrong?
Thanks.
updated by @amartins: 12/25/16 03:33:27AM