Duane,Yes, you will get an empty result set if you step off the end: doug-williamss-macbook-pro:~ igudo$ curl -u dougw:PASSWORD " http://twitter.com/statuses/followers.xml?count=100&page=43" | grep "</user>" | wc -l 100 doug-williamss-macbook-pro:~ igudo$ curl -u dougw:PASSWORD " http://twitter.com/statuses/followers.xml?count=100&page=44" | grep "</user>" | wc -l 17 doug-williamss-macbook-pro:~ igudo$ curl -u dougw:PASSWORD " http://twitter.com/statuses/followers.xml?count=100&page=45" | grep "</user>" | wc -l 0
Thanks, Doug -- Do you follow me? http://twitter.com/dougw On Mon, Jul 6, 2009 at 10:32 AM, Duane Roelands <[email protected]>wrote: > > Do you ever get an empty response set? I was experimenting with the > pagination and I found that if you request page 20 (for example) for > someone who only has one page of friends, you simply get the page 1 > response set. > > On Jul 6, 1:09 pm, Doug Williams <[email protected]> wrote: > > You should either page through statuses/friends until you get an empty > > response set or use statuses/show to get the number of friends expected > and > > intelligently page to the end of the list. > > > > Thanks, > > Doug >
