Return String from Apache Http POST Request (Android)
I'm attempting to get a json string back from an HTTP post request in my andorid app. Using a solution from this post, code also shown here. public void post(String completeUrl, String body) { HttpClient httpClient = new DefaultHttpClient(); HttpPost…