Re: roll up twitter conversations

2009-01-09 Thread twonvo.com
i have a ready made one : http://www.twonvo.com - is this what you were thinking of? On Dec 23 2008, 8:07 pm, vonnegut_fan wrote: > Hello, > I am building a third party twitter app and want to show tweets in > "conversations", meaning if a tweet is a reply, I display those the > same way that se

Re: roll up twitter conversations

2008-12-24 Thread JakeS
If it reaches a protected status, it obviously cannot proceed fetching more of the conversation. You may want to provide some sort of indicator of that if your UI allows it. And no, the search api sadly doesn't contain the in_reply_to_status_id field. My UI only shows the "Show Conversation" me

Re: roll up twitter conversations

2008-12-23 Thread Shahid Faiz
Nice approach to get conversations. What you do if that status is from protected profile and that person is not friend? What about results returned from search, I think these results don't have in_reply_to_status_id? Thanks, Shahid On Wed, Dec 24, 2008 at 9:46 AM, JakeS wrote: > > My applicati

Re: roll up twitter conversations

2008-12-23 Thread JakeS
My application currently does it by looking at the in_reply_to_status_id on the current status, then calling http://twitter.com//statuses/show/WHATEVERTHATIDWAS.xml to get that status. If that one has a in_reply_to_status_id, it fetches that one. It keeps going until it reaches a status without

Re: roll up twitter conversations

2008-12-23 Thread Alex Payne
We don't have an official way of retrieving a conversation just yet, but it's our list. On Tue, Dec 23, 2008 at 11:07, vonnegut_fan wrote: > > Hello, > I am building a third party twitter app and want to show tweets in > "conversations", meaning if a tweet is a reply, I display those the > same

roll up twitter conversations

2008-12-23 Thread vonnegut_fan
Hello, I am building a third party twitter app and want to show tweets in "conversations", meaning if a tweet is a reply, I display those the same way that search.twitter.com displays conversations, with the reply beneath. I just wanted to ask before I start from scratch if there is a semi- stand