мой код для создания моего JSONObject:
InputStream instream = entity.getContent();
// Load the requested page converted to a string into a JSONObject.
JSONObject myAwway = new JSONObject(convertStreamToString(instream));
// Get the query value'
String query = myAwway.getString("data");
// Make array of the suggestions
JSONArray suggestions = myAwway.getJSONArray("data");
Это прекрасно работало до тех пор, пока пару минут назад, внезапно, не выдало ошибку "JSON fail" ... есть идеи почему?