list: offset doesn't work
Hi,
I'm trying to list all top free apps in GAME category by changing offset in a loop. But it doesn't work at all. Whatever the offset is, it always returns apps from the beginning.
Ex.
offset=None
appList = server.list(cat, catList[0], nb_results='10')
Ouput
list?c=3&cat=GAME&ctr=apps_topselling_free&n=10
jp.colopl.dpuzzle
com.square_enix.android_googleplay.DQRivals
com.gamecaff.hero
com.bandainamcoent.ninjaborutage_app
jp.co.bandainamcoonline.grasma
com.tiles.piano.animemusic
com.linecorp.LGTMTM
com.YoStarJP.AzurLane
com.nintendo.zara
com.gamestart.fill
offset='5'
appList = server.list(cat, catList[0], nb_results='10', offset='5')
Output
list?c=3&cat=GAME&ctr=apps_topselling_free&n=10&o=5
jp.colopl.dpuzzle
com.square_enix.android_googleplay.DQRivals
com.gamecaff.hero
com.bandainamcoent.ninjaborutage_app
jp.co.bandainamcoonline.grasma
com.tiles.piano.animemusic
com.linecorp.LGTMTM
com.YoStarJP.AzurLane
com.nintendo.zara
com.gamestart.fill
See my comment for a fix