log.info("final_timeline_url -->" + final_timeline_url);
String response = HttpClient.doGet(final_timeline_url);
log.info("DEBUG --> " + response);
TimelineResponse timelineResponse = JSON.decode(response, TimelineResponse.class);
if (timelineResponse != null && timelineResponse.isOK()) {
for (TimelineData.Info timelineInfo : timelineResponse.getData().getInfo()) {
tempParams.clear();
tempParams.put("format", "json");
tempParams.put("id", timelineInfo.getId());
tempParams.putAll(getFixedParams());