次のコードで上記のエラーを取得する
MainActivity.get("statuses/public_timeline.json", null,
new JsonHttpResponseHandler() {
public void onSuccess(JSONArray timeline) {
// Pull out the first event on the public timeline
JSONObject firstEvent = timeline.get(0);
String tweetText = firstEvent.getString("text");
// Do something with the response
System.out.println(tweetText);
}
});
上記のコードでは、timeline.get(0) がエラーを取得しています。