[twitter-dev] Missing tweets or invalid statuses_count

2011-02-02 Thread Adam Green
I'm collecting all the tweets for potential 2012 presidential candidates, and I'm finding that /statuses/user_timeline returns much fewer tweets than listed as the total in an account. The docs say that this API call is limited to 3,200 tweets, but this is happening with accounts that have fewer

Re: [twitter-dev] Missing tweets or invalid statuses_count

2011-02-02 Thread Matt Harris
Hey Adam, Do you include the parameter include_rts=1 ? Be default statuses/user_timeline doesn't include retweets so you have to add this parameter to retrieve a full timeline. Best @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Wed, Feb 2, 2011 at 2:28 PM, Adam

Re: [twitter-dev] Missing tweets or invalid statuses_count

2011-02-02 Thread Adam Green
I'm using your OAuth library for this. I tried: $connection-request('GET', $connection-url('1/statuses/user_timeline'), array('screen_name' = 'barackobama', 'include_entities' = 't', 'include_rts' = 't', 'count' = 200, 'page' = $page)); I get the same set of tweets I