Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter Threaded Conversation

I've been wanting to create something like this: http://twitter.theinfo.org/

A script which finds replies to a tweet and shows them in a threaded fashion like this:

http://twitter.theinfo.org/45967981225840640

Any help on where to start or if there's an implementation already out there for me to tinker with?

like image 408
Hirvesh Avatar asked Mar 11 '11 05:03

Hirvesh


1 Answers

Going up the thread is easy because replies have in_reply_to_statu_id but finding replies to a status is near impossible. You have have to maintain a search looking for tweets to a specific user and check if they are a reply in which case save them.

like image 162
abraham Avatar answered Oct 11 '22 14:10

abraham