+ "?page=" + page + "&count=" + limits.getTimelinePageCountLimit());
JSONArray array = requestJSONArray(request);
//System.out.println(array);
for (int i = 0; i < array.length(); i++) {
Tweet t;
try {
t = new Tweet(array.getJSONObject(i));
} catch (TweetParseException e) {
throw new TwitterClientException(e);
} catch (JSONException e) {
throw new TwitterClientException(e);
}