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..
Do this to get the JSON
String json = EntityUtils.toString(response.getEntity());
More details here : get json from HttpResponse