user1190646
user1190646

Reputation:

Twitter API - I want to grab all the tweets by a certain user (actually, a whole bunch of users) (php)

I have a list of various twitter accounts (usernames). I want to grab a feed of their statuses (public).

How can i do that with their api?

i can only see how to do it if i were to:

  1. make a new twitter account (@myaccount)
  2. follow all the twitter accounts i want to grab their statuses from
  3. use oAuth to authorise @myaccount
  4. get all the statuses from that accounts timeline and process that

how can i do this the proper way?

Upvotes: 1

Views: 1030

Answers (1)

Theo Kouzelis
Theo Kouzelis

Reputation: 3523

You can make a twitter list https://support.twitter.com/entries/76460-how-to-use-twitter-lists and output via a widget https://twitter.com/about/resources/widgets/widget_list.

this answer was from here but some of the links are broken Combine multiple twitter feeds into one list with PHP?.

Or you could do the way you suggested using this php class http://code.google.com/p/twitter-php/ and using the Twitter::ME_AND_FRIENDS option

Upvotes: 1

Related Questions