В настоящее время я пытаюсь добавить канал Twitter в свое приложение, и в настоящее время все работает, за исключением случаев, когда я пытаюсь получить поле URL-адреса изображения из JSON.
Вот мой код для анализа JSON:
public ArrayList<Tweet> getTweets() {
String searchUrl =
"http://twitter.com/statuses/user_timeline/vogella.json";
ArrayList<Tweet> tweets =
new ArrayList<Tweet>();
HttpClient client = new DefaultHttpClient();
HttpGet get = new HttpGet(searchUrl);
ResponseHandler<String> responseHandler =
new BasicResponseHandler();
String responseBody = null;
try {
responseBody = client.execute(get, responseHandler);
} catch(Exception ex) {
ex.printStackTrace();
}
JSONObject jsonObject = null;
Log.e("", "responseBody = " + responseBody);
JSONArray arr = null;
try {
arr = new JSONArray(responseBody);
} catch (JSONException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
for (int i = 0; i < arr.length(); i++) {
try {
jsonObject = arr.getJSONObject(i);
} catch (JSONException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Tweet tweet = null;
try {
tweet = new Tweet(
jsonObject.getString("profile_image_url"),
jsonObject.getString("text"),
jsonObject.getString("created_at")
);
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
tweets.add(tweet);
}
return tweets;
}
И вот ошибка, которую я получаю:
02-14 00:19:18.672: W/System.err(809): org.json.JSONException:JSONObject["profile_image_url"] not found.
Несмотря на наличие «profile_image_url» - нажмите на ссылку, чтобы увидеть JSON - LINK . Все остальное в ленте, по-видимому, можно найти, так почему я не могу получить URL изображения?