[twitter-dev] Re: collecting followers and friends

2011-03-05 Thread mabujo
Run this in the background - don't do it on page load if you can avoid it. Also, if you are using PHP to compare the lists don't use array_diff as this is very slow on large arrays. On Mar 5, 8:14 am, amit debnath amitdebnath...@gmail.com wrote: I have a site for twitter based tools. One of the

[twitter-dev] Stepping Up And A Modest Proposal

2011-03-05 Thread Clay Graham @ratecred
Hello Twitter Developers, I am introducing myself to this group for a number of reasons, the primary one is that I don't want to be a hypocrite, we are going to have to get more involved, reach out to others for solutions and ideas, and look to this group for knowledge and wisdom. Any direction,

[twitter-dev] beginner help needed with oAuth and xAuth

2011-03-05 Thread Amrit
Hello everyone here in talks. I want to create signing url without using any library or api. I tried a lot according to http://dev.twitter.com/pages/auth website but I couldnot success. Can I get any nice tutorial regarding signing url for twitter? Thanks -- Twitter developer documentation and

[twitter-dev] Re: Apps that Site Hack

2011-03-05 Thread nickmilon
These kind of tools do a lot of damage to twitter ecosystem. On Mar 4, 3:02 pm, Alan Hamlyn alanhamlyn...@gmail.com wrote: Hi Dewald, In fact you partly answered it yourself. Random login CAPTCHA's when logging in to twitter, or the occasional one if flagged based on users tweets to have

[twitter-dev] users/lookup.json

2011-03-05 Thread Naresh
hi! i am very new to twitter API. my question is: http://api.twitter.com/1/users/lookup.json?user_id=1401881,1401882 this is example url of twitter, it never works. and it returns { * request: /1/users/lookup.json?user_id=1401881,1401882 * error: Could not authenticate you. } could you

[twitter-dev] follower/friend list

2011-03-05 Thread amit debnath
I have a site for twitter based tools. One of the options was to enable users see the people their non-friend-followers and non-follower-friends. The only way I could see to achieve this is to gather and store the complete list of followers and friends locally and calculate from that. This is

[twitter-dev] Re: users/lookup.json

2011-03-05 Thread mabujo
This method requires authentication, so you will need to sign the request with oauth tokens before it will work. On Mar 5, 4:04 am, Naresh naresh.jonn...@gmail.com wrote: hi! i am very new to twitter API. my question is:http://api.twitter.com/1/users/lookup.json?user_id=1401881,1401882 this

[twitter-dev] Followers and Friends - How do you really page these lists?

2011-03-05 Thread craigpierce
I searched back, but didn't see anything on this (please feel free to tell me I'm wrong and point me to the answer)... Also, someone else *just* raised a similar question, but not exactly the same, so I'm not going to hijack their thread... The call to get a user's friends/followers ids returns

Re: [twitter-dev] beginner help needed with oAuth and xAuth

2011-03-05 Thread brian
http://jaanus.com/post/1451098316/understanding-the-guts-of-twit On Sat, Mar 5, 2011 at 2:33 AM, Amrit bunkde...@gmail.com wrote: Hello everyone here in talks. I want to create signing url without using any library or api. I tried a lot according to http://dev.twitter.com/pages/auth website

[twitter-dev] Streaming API

2011-03-05 Thread littleark
Hi, I would like to have a stream of geo-located tweets filtered against pre-defined keywords. As stated in the documentation: Bounding boxes are logical ORs. A locations parameter may be combined with track parameters, but note that all terms are logically ORd, so the query string

[twitter-dev] Re: Followers and Friends - How do you really page these lists?

2011-03-05 Thread craigpierce
For posterity: I think I have my answer...I just happened to stumble upon these: statuses/friends statuses/followers The namespacing makes these calls not super-intuitive; they're actually lists of users, not statuses - they just happen to include the latest status from each user as part of

[twitter-dev] Re: beginner help needed with oAuth and xAuth

2011-03-05 Thread Bess
I search the blog post. Find no results on xAuth keyword. Our developer book on Twitter API is coming out soon. It should help out a great deal for beginners. At least on the mobile section I'll cover the xAuth. On Mar 5, 10:00 am, brian br...@corahost.info wrote:

Re: [twitter-dev] Re: users/lookup.json

2011-03-05 Thread NARESH JONNALA
thanx mabujo, i am trying to fetch data using curl, but i don't know, how to do... could you give an example please. is any non-oauth way is there, to fetch friends info? On Sun, Mar 6, 2011 at 12:20 AM, mabujo jaa...@gmail.com wrote: This method requires authentication, so you will need to