I am trying to create a relative leaderboard in Corona where the user will see his score and other people's around him. I am following suggestions from this thread to do it.
Whenever I attempt to use setPageOffset the function will not have any paging performed. Instead, it returns a list starting from Rank 1 and down (the regular resposne as if no paging was given).
The code I used is as follows:
local pagingOffset = 10
local limit = 5
local scoreBoardService = App42API.buildScoreBoardService()
scoreBoardService.setPageOffset(pagingOffset)
scoreBoardService.getTopNRankings(gameName, limit, App42CallBackMyRankList)
Could anyone shed light on this?