[twitter-dev] replies to a particular tweet?

2011-01-21 Thread Rosie Svaskova
Hello. Is there a way in the Twitter API to get the replies to a
particular tweet?

From what I understood, there isn't.

Not in an easy pragmatic way. There is an feature request in for it:

http://code.google.com/p/twitter-api/issues/detail?id=142

There are a couple of third-party websites that provide APIs but they
often miss statuses.


Please correct me if I am wrong.


Thanks

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] replies or retweets?

2011-01-10 Thread Erik Bloem
Hi, I have some problems getting retweets.

I am modifying old code that uses replies: 
http://twitter.com/statuses/replies.xml?...

I modified it to http://api.twitter.com/1/statuses/retweets/1.xml?...
where the 1 in the 1.xml is the status id (or the since id?).

Nevertheless, I get an error Unauthorized...

Any ideas?

Or is there some other way to get the replies, maybe by an old method
using replies?

Thanks in advance for any reply,

Erik

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Replies/mentions not available?

2010-08-24 Thread Taylor Singletary
There is a known issue related to JSON timelines containing null elements,
which has crippled some clients. We'll have a fix for this deployed today as
soon as we can.

As for your mentions not showing on your web page -- can you share any
status ids that you think should be there that aren't?

Thanks,
Taylor

On Tue, Aug 24, 2010 at 7:52 AM, srikanth reddy
srikanth.yara...@gmail.comwrote:

 I am not getting the mentions even in web page. Is there some problem?
 Also one of  my users has complained about the inconsistency in fetching
 the results for hometimeline (related to json output. Not sure(yet) if this
 is my app's problem or from twitter but just want to check if there are any
 known problems from twitter related to json output)



[twitter-dev] @replies missing

2010-07-04 Thread Naveen Ayyagari
Hello,
Hoping  we can get post on status.twitter.com about @replies not
showing up... We have been getting a lot of reports that they are
missing, and a quick twitter search seems to indicate it is not
limited to our application.

http://search.twitter.com/search?had_popular=trueq=repliesresult_type=recent



Re: [twitter-dev] @replies missing

2010-07-04 Thread John Kalucki
The mentions timelines were updating with additional latency, perhaps a few
minutes, for about a day, but they were updating. They should be updating in
near real time now.

-John Kalucki
http://twitter.com/jkalucki
Infrastructure, Twitter Inc.


On Sun, Jul 4, 2010 at 1:16 PM, Naveen Ayyagari
nav...@getsocialscope.comwrote:

 Hello,
Hoping  we can get post on status.twitter.com about @replies not
 showing up... We have been getting a lot of reports that they are
 missing, and a quick twitter search seems to indicate it is not
 limited to our application.


 http://search.twitter.com/search?had_popular=trueq=repliesresult_type=recent




[twitter-dev] Replies on user timeline

2009-12-17 Thread Quy
I am working on a twitter site and wanted to know if it makes sense to
include @replies in a user's timeline. There can be a lot of noise if
I try to show the last 20 tweets of a celebrity for example and all
the tweets are @replies that are only relevant to the replied user. Do
most sites just filter out @replies to show statuses/tweets that make
more sense?

Thanks,

Quy


[twitter-dev] replies blog post clarification...

2009-05-13 Thread Steve Brunton

from @biz and his post :

First, we're making a change such that any updates beginning with
@username (that are not explicitly created by clicking on the reply
icon) will be seen by everyone following that account.

for us folks that fiddle with the API. Can we read this as Tweets that
start with @username, but don't have the in_reply_to_status_id
parameter set?

-steve


[twitter-dev] replies url gone?

2009-04-23 Thread rhysmeister

I've just noticed some @reply functionality is not working in my app

I was aware of the change to mentions but not that this involved a
change in url to http://twitter.com/statuses/mentions.format is the
old http://twitter.com/statuses/replies.format dead? Any chance of
reinstating if so?

http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-mentions

Rhys



[twitter-dev] Replies

2009-04-21 Thread mjx

I am working on a Twitter project in which I need to retrieve the
oldest replies to a specific user from a given status id.

Example:

Status ID: 105
Status ID: 104
Status ID: 103
Status ID: 102
Status ID: 101
Status ID: 100

I want to retrieve the 2 oldest replies since id 100.

If I use the API with the since_id (100) and count (2) parameters it
returns ids 105 and 104. I need 101 and 102.

As I understand the API, in order to achieve this I need to select all
of the replies using the since_id parameter and then using the page
parameter, iterate through the pages until I get to a point where I
have received all of the replies since the specified id as there is no
number of pages response.

This is not a problem when the application has a small number of
replies to process. When the application gets to a point where it has
100k replies every 10 minutes, this will be a problem.

Is there a better way to get the oldest replies since a particular id?
It seems that iterating through pages would quickly deplete one's rate
limit (especially when trying to be as friendly to the API as
possible).

Are there any plans to allow for a get oldest since id parameter?
Are there any plans for page count return result to avoid needless
iterating through results that aren't needed in my application?

Thanks in advance for any help or insight that can be provided.



[twitter-dev] Replies API maxes out at approx 800 replies or 60 days?

2009-03-28 Thread WhoIsGregg

Hello,

When accessing a user's replies using:

http://apiwiki.twitter.com/REST+API+Documentation#statuses/replies

It stops returning replies around 800 replies (which go back about 60
days). Is this intended behavior or should I file a bug? I know the
docs specify a limit of 3,200 statuses... does that apply to replies?

http://apiwiki.twitter.com/REST+API+Documentation#PaginationLimiting

Any ideas on how to grab older @replies for a particular user?

Thanks!
Gregg


[twitter-dev] Replies Method

2009-03-09 Thread Jeff Bishop
I am trying to pull a list of replies from Twitter using:

http://twitter.com/statuses/replies.xml

I have tried sending in a since_id parameter and I get a bad error back from 
twitter that the page doesn't exist.  Should this be working?

In addition, the page parameter if  not specified, is it assumed to be 1?

Also, can the count parameter be allowed here to get  more then the last 20 
replies if requested?  It doesn't work either and isn't in the list in the 
documentation.