function getHomeTimeline($format, $id=NULL, $count = 60, $since = NULL) {
if ($id != NULL) {
$api_call = sprintf("statuses/home_timeline/%s.%s", $id, $format);
}
else {
$api_call = sprintf("statuses/home_timeline.%s", $format);
}
if ($since != NULL) {
$api_call .= sprintf("?since_id=%s", urlencode($since));
$count=0;
}
if ($count != 60 AND $count !='') {
$api_call .= sprintf("?count=%d", $count);
}
return $this->get($api_call);
}
}