google app engine - Why are my JSON property names being folded to lower case? -
i have cloud endpoint app, rest json looks this
{ "first_name": "robert" }
and mapped jdo object, thus
private string first_name
the problem have fails, gce code fails recognise first_name
. looked @ api explorer, , generated endpoint expects first_name
.
when create test client generate json first_name
works fine.
sadly however, client generate json in production outside of control, can't change fact sending first_name in capitals.
any suggestions?
Comments
Post a Comment