Re: [twitter-dev] friends/ids and followers/ids not working in oauth

2010-10-25 Thread Taylor Singletary
The console on dev.twitter.com is unreliable. I recommend using Apigee's great Twitter console instead http://app.apigee.com/console/twitter

Re: [twitter-dev] friends/ids and followers/ids not working in oauth

2010-10-25 Thread Slate Smith
there is a current ticket on ids, also did you notice the newer id_str versus id, use that - and don't use the console it's limiting. $parameters = array(screen_name = BARACKOBAMA, cursor = $cursor); $method = followers/ids; $followers = $this-connection-get($method, $parameters); Max

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread John Kalucki
This amount of data is trivial compared to the total amount of data sent over Site Streams. The friends list per user is roughly the size of a tweet or two. We have to weigh the cost of maintaining the feature vs. the bandwidth and CPU savings. Unless the savings is significant, generally the

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread Naoki Hiroshima
Ok, maybe it's trivial in terms of the size of data sent from the server. But it seems taking a long time to receive all of those lists, and be ready to get status updates. If allowed, I'd like my programs to receive status updates as soon as they get connected. -- @N On Wed, Oct 20, 2010 at

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread Tom van der Woerdt
Your programs? Are you sure you don't mean User Streams? Tom On 10/20/10 8:53 PM, Naoki Hiroshima wrote: Ok, maybe it's trivial in terms of the size of data sent from the server. But it seems taking a long time to receive all of those lists, and be ready to get status updates. If allowed,

Re: [twitter-dev] friends list in Site Stream

2010-10-20 Thread Naoki Hiroshima
Yes, my program is making hundreds of connections to *Site* Stream and receiving updates for tens of thousands of users. -- @N On Wed, Oct 20, 2010 at 12:08 PM, Tom van der Woerdt i...@tvdw.eu wrote: Your programs? Are you sure you don't mean User Streams? Tom On 10/20/10 8:53 PM, Naoki

Re: [twitter-dev] friends/ids requires authentication now?

2010-09-16 Thread Taylor Singletary
Hi UncleYa, We have some lingering issues from the basic auth shut off that result in the occasional, incorrect error like this when being rate limited. Hope to have those all cleaned up soon. Part of your post suggests you may have been getting a different kind of error when you application was

Re: [twitter-dev] Friends

2010-08-31 Thread Matt Harris
Hey, I'm not sure which library you are using here, could you explain the language you are using and a link to the library so we can help debug. Thanks, Matt On Thu, Aug 26, 2010 at 2:23 PM, garyz ga...@tweetmyjobs.com wrote: Is anyone else having problem with TwitterOauth and friends? I'm

Re: [twitter-dev] Friends and followers

2010-05-26 Thread philip crawford
Probably a naming mistake made early on that would have been too much effort to change later on. Clearly though, mutual following indicates Friends more that the unidirectional follow does. In my system, we say following and friends like you suggest. A bit confusing, but I think easier than

Re: [twitter-dev] Friends and followers

2010-05-25 Thread John Kalucki
Twitter has evolved quite a bit over the last 4 years. It's not always possible to evolve the API at the same pace. I wouldn't say that mutual followers are friends. They're just mutual followers. On Tue, May 25, 2010 at 7:43 PM, Miles Parker milespar...@gmail.com wrote: This question is

Re: [twitter-dev] friends/ids missing cursor information with oAuth?

2010-04-27 Thread Taylor Singletary
Hi Andrew, I just did a few ad hoc tests and was able to get the fields to show up in JSON and XML responses, both with OAuth and using Basic Auth. Is it possible that when the value is zero to JSON key/pair, your implementation might be hiding the result from you in some way? Taylor Singletary