I get the following JSON:
[ { "user_id": "someValue" } ]
It is stored inside the string.
I would like to convert it to a JSONObject that does not work (since the constructor assumes JSON starts with { ). Since this is not possible, I would like to convert it to a JSONArray . How can I do this using SimpleJson?
source share