Android Google-Shopping API force closes while parsing
- by Sam Jackson
I'm trying to send a request to the Google-Shopping API with the following static method which I think is working:
public static String GET_TITLE(String url) throws JSONException {
InputStream is = null;
String result = "";
JSONObject jArray = null;
// http post
try {
HttpClient httpclient = new…