I want to get a JSON object from a Http get response:
JSON
Here is my current code for the Http get:
protected String doInBackground(String..
The string that you get is just the JSON Object.toString(). It means that you get the JSON object, but in a String format.
If you are supposed to get a JSON Object you can just put:
JSONObject myObject = new JSONObject(result);