Code:
$twitterObj = new Tw_EpiTwitter($credential1, $credential2, $credential3, $credential4);
$options = array(
‘count’ => 1,
‘max_id’ => 99999999999999999999999999 * 999999999999999999999999 * 999999999999,
);
$statuses = $twitterObj->get(’/statuses/home_timeline.json’, $options);
var_dump($statuses->response);exit;
Here is the code. Output is
array(0) { }
There are 2 tweets in my account. With ids 245170210548621312 and 245159774507921408
Why the output is an empty array? I tested to set max_id to 245170210548621312 - 1, but the same result. What is wrong? Thanks!