Reputation:
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:
how can i do this the proper way?
Upvotes: 1
Views: 1030
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