[twitter-dev] Re: display user's profile image - definitive answer?

2011-02-17 Thread David Giamanco
I'm guessing you want to show the last 25 tweets of twitter users that you follow. If so, then you should use statuses/friends_timeline. The url is: http://api.twitter.com/1/statuses/friends_timeline.json Hopefully this helps. - David Giamanco -- Twitter developer documentation and reso

[twitter-dev] Re: Follower analysis without whitelisting breaks limits?

2011-02-14 Thread David Giamanco
counts then you don't need the initial call to the REST API to collect all ids. All you need is a count of the ids and then to initiate a User Stream. The User Stream will give you the differences in real time and you can store just the differences, instead of the entire set of ids. David Gia