I am trying to download some JSON from the google book API.
The URL and API-Key I\'m using seems to work becuase i can fetch it manually with a browser. I call this cl
I normally does this way,might work for you as well
HttpResponse response = httpClient.execute(httpPost, localContext); serverResponseJSON = EntityUtils.toString(response.getEntity()); Log.i("Server Response", serverResponseJSON);