[
Hi
I am trying to store a json that looks like this one:
[
"origin:6",
"destination:7",
{
"attacker": [
4,
2,
1
],
"defender": [
6,
2
]
}
],
[
"origin:5",
"destination:4",
{
"attacker": [
2
],
"defender": [
5,
3
]
}
],
[
"origin:3",
"destination:2",
{
"attacker": [
3
],
"defender": [
6,
3
]
}
],
[
"player:1"
]
]
And I am getting this error :
Message is : Bad Request
App Error code is : 2605
Http Error code is 400
Detail is : Passed JSON string is not valid
I validate the json at JSONLint.com . I also tried to have unique names for every object by only sending one of the iterations. Still the same problem.
Is there any limitation? is there something wrong with my json that the json validator does not detect?