[twitter-dev] Unsubscription Process

2010-12-23 Thread Itsscotty
Hi, How do I stop getting all these twitter emails -- 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

Re: [twitter-dev] Unsubscription Process

2010-12-23 Thread Scott Wilcox
Seems you've somehow missed: Change your membership to this group: http://groups.google.com/group/twitter-development-talk at the bottom of every email. On 23 Dec 2010, at 11:19, Itsscotty wrote: Hi, How do I stop getting all these twitter emails -- Twitter developer

[twitter-dev] On Process

2010-07-07 Thread Robert Stevenson-Leggett
Hi, I was wondering about tools and processes in use at Twitter to manage and develop the API. How are releases done so quickly across so many machines? How are work items assigned? Is CI / CD in use? What about testing? Do you have people dedicated just to manage this process? If someone at

Re: [twitter-dev] oauth Process flow and status Part 1

2009-11-24 Thread ryan alford
The signature has to go last. That's one mistake that most people make. You are suppose to put the parameters in order EXCEPT the signature parameter. The signature parameter is created by using the other parameters, then it's appended to the end of the query string. The OAuth signature is

[twitter-dev] whitelisting process?

2009-10-07 Thread Edwin Khodabakchian
Does anyone know how long it usually takes for the twitter team to approve or request a whitelisting (http://twitter.com/help/ request_whitelisting) request? We are in the process of launching a new service and this is one of the last dependencies we are trying to resolve so any insight into the

[twitter-dev] Re: Process every single Tweet.

2009-07-17 Thread Bjoern
On Jul 17, 1:57 pm, CreativeEye creativv...@gmail.com wrote: 1) Get Twitter Public timeline repeatedly. My understanding is that this does not give you all tweets, just a random selection. 2) Get follower network - user profiles and get their statuses. You would reach the API limit quickly,

[twitter-dev] Re: Process every single Tweet.

2009-07-17 Thread Thanashyam Raj
Thanks a lot for your reply, Bjoern. ***from twitter api wiki*** statuses/public_timeline Returns the 20 most recent statuses from non-protected users who have set a custom user icon. The public timeline is cached for 60 seconds so requesting it more often than that is a waste of resources.

[twitter-dev] Re: Process every single Tweet.

2009-07-17 Thread Abraham Williams
Yes. Firehose is the only way to get all statuses. Abraham On Fri, Jul 17, 2009 at 08:02, Thanashyam Raj creativv...@gmail.com wrote: Thanks a lot for your reply, Bjoern. ***from twitter api wiki*** statuses/public_timeline Returns the 20 most recent statuses from non-protected users who

[twitter-dev] Re: Process every single Tweet.

2009-07-17 Thread John Kalucki
There is no way to receive every status. Private statuses, for example, are not distributed. The only sanctioned way to receive any substantial proportion of public statuses in real time is via the Streaming API. You can also receive a non-representative non-random, real-time sample, which may

[twitter-dev] Re: Process every single Tweet.

2009-07-17 Thread SV
This could help - http://www.flotzam.com/archivist/ On Jul 17, 6:57 am, CreativeEye creativv...@gmail.com wrote: Myself and my friend are doing a research based on twitter. We need to analyse each and every tweet real time. Can you guide how to approach this. There could be 2 ways of doing

[twitter-dev] Re: Process every single Tweet.

2009-07-17 Thread Thanashyam Raj
@sv - Not quite what i am looking for. But thanks a lot for the link. I think firehose is the only way to go, but thats something not very much in control. @jkalucki - Thanks for your info. I will move to streaming API. I did not know the current approach would be frowned upon. And hopefully