i am the following codes in javascript
var people = {
"users" : [{id : this.getJID().toString()},{id : this.getJID().toString()}],
"body" : messageBody
}
on my server end, I have the following:
JSONObject b = new JSONObject(jsonstring);
JSONArray users = b.getJSONArray("users");
I cannot get users because I will have the following exception.
org.json.JSONException: JSONObject["users"] is not a JSONArray.
I tried to cast to JSONObject but also gets error.
JSONObject o = b.getJSONObject("users");
org.json.JSONException: JSONObject["users"] is not a JSONObject.
What is wrong??
peopleand the result of thestringifycall? – Thomas Aug 5 '11 at 7:55useris not an array but a string:{"users":"[...]","body":"test"}There should be no quotes around[...]. That's why you get the error. It seems like you recursively serialized the contents ofpeople. – Felix Kling Aug 5 '11 at 8:12