Im using curl to fetch my Twitter favorites:
<?php
$username = "bob";
$password = "password";
$twitterHost = "http://twitter.com/favorites.xml";
$curl;
$curl = curl_init();
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_USERPWD, "$username:$password");
curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($curl, CURLOPT_URL, $twitterHost);
$result = curl_exec($curl);
curl_close($curl);
header('Content-Type: application/xml; charset=ISO-8859-1');
print $result;
?>
However this only fetches the last 20 favorites, not all of them.
If i amend this line:
$twitterHost = "http://twitter.com/favorites.xml";
And change it to:
$twitterHost = "http://twitter.com/favorites.xml?page=2";
I can get the next set of 20 favorites.
There doesnt appear to be anyway, using the Twitter API, to find out how many pages of favorites there are.
As such can anyone suggest the best way to get all favorites?
Or if this is not possible, get all the Tweets for a date range?