Hi, i want to implement app42 leaderboard api to my game, but i have a problem:
I have created a flash builder project, and then i've implemented app42 api.
then in my main class i've wrote:
_serviceAPI = new ServiceAPI("...","...");
var gameName:String = "BuyFromMe";
var userName:String = "Arman";
//var sBoard:ScoreBoardService = new ScoreBoardService(
var sBoard:ScoreBoardService = _serviceAPI.buildScoreBoardService();
var cb:MyCallBack = new MyCallBack();
cb.container = this;
sBoard.saveUserScore(gameName,userName,1,cb);
it says:
Exception is : Error: {"app42Fault":{"httpErrorCode":404,"appErrorCode":3002,"message":"Not Found","details":"Game with the name 'BuyFromMe' does not exist."}}
what should i do now? :(