My android game pushes this JSON to my django server:
{
data: [
[
Settings,
"4748"
]
],
logType: starcycle-screenchanges
}
It's not valid though because it doesn't have the strings. Which, I think, is why I can't insert it into mongoDB. Is there an easy way to make it so I can make it a json with json.loads().
I can't use eval()