Hello,
I'm seeing an error when trying to update multiple player stats from CloudScript. Is there a limit on how many stats that can be updated fromCloudScript? I'm updating 13 stats on a player, and they look something like the following:
handlers.UpdateUserStatData = function (args) { server.UpdatePlayerStatistics({ "Statistics": [ { "StatisticName": "totalAbilityUses", "Value" : args.totalAbilityUses },
..etc
I see the following error when trying to make the request:
"apiError": {
"code": 400,
"status": "BadRequest",
"error": "InvalidParams",
"errorCode": 1000,
"errorMessage": "Invalid input parameters",
"errorHash": null,
"errorDetails": {
"StatisticName": [
"The StatisticName field is required."
]
}
}
"TitleId": "FB03",
"EventId": "86138e9fdf934cb0904cc2c33b052b07",
"EntityId": "52FE51A33D5CFEFC",
I am seeing a success in updating just one or two stats. But when I get past updating 4 or 5 stats at once, sometimes it works and sometimes it errors out.
Thanks!
Kevin
