Hi every body,
i've implemeted app42 api successfuplly. i get top10 ranks and 10 near scores with no problem.
but when i whant to get daily score, it seems it have hours of delay in updating list!
if i add a score for example "A" and check daily score, "A" wont show in daily score until hours later!
but if i check top 10, "A" is there!
here is what i do, code is in AS3:
now = convertToUTC(now);
startDate = convertToUTC(startDate)
_sBoard.getTopNRankersByDate(_gameName,startDate,now,10,new CallBackManager(onGetScoreListSucc));
when i trace UTC time, it is correct:
nowUTC: Mon Aug 17 05:23:54 GMT+0430 2015 startDateUTC: Sun Aug 16 05:23:54 GMT+0430 2015
i have added a score in time:
2015-08-17T04:45:28Z
but it is not in my daily score.