In jubeat and a few other games (GFDM comes to mind) pagination is requested for the response. In jubeat, get_mdata is called 3 times and a valid response is to send 3 pages of records rather than 1 page of every record in the response. In the gfdm v games, the score request method only allows up to 250 entries per page, and keeps requesting until the server says it's done. This is a request for anyone willing to take it on to implement pagination in get_all_records and get_all_scores that grabs the first x number of entries by music ID. For example, grab all scores between music id 0 and 250, 250 and 500, etc...
In jubeat and a few other games (GFDM comes to mind) pagination is requested for the response. In jubeat, get_mdata is called 3 times and a valid response is to send 3 pages of records rather than 1 page of every record in the response. In the gfdm v games, the score request method only allows up to 250 entries per page, and keeps requesting until the server says it's done. This is a request for anyone willing to take it on to implement pagination in get_all_records and get_all_scores that grabs the first x number of entries by music ID. For example, grab all scores between music id 0 and 250, 250 and 500, etc...