[twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread D. Smith
OK, but when I entered my login/password, is says page unavailable. Is it supposed to do that? On Oct 7, 12:56 pm, Tom van der Woerdt i...@tvdw.eu wrote: Yes, you do. http://stream.twitter.com/statuses/sample.json-- click it, it will ask for authentication and when you click Cancel, it will

[twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread D. Smith
I'm confused now. Which API should I use Streaming or Search? What I want is to monitor Twitter and every time someone uses certain words (maybe a total of about 20 words that I want to monitor continuously), I want to show the tweet on the screen (or record it into database) Should I use search

Re: [twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread John Kalucki
stream.twitter.com/1/statuses/filter.json track=keyword1,keyword2 etc. -John On Thu, Oct 7, 2010 at 10:13 AM, D. Smith emai...@sharedlog.com wrote: I'm confused now. Which API should I use Streaming or Search? What I want is to monitor Twitter and every time someone uses certain words

[twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread D. Smith
Can I use any Twitter account username/password or does the account have to be registered with Twitter API? On Oct 7, 1:18 pm, John Kalucki j...@twitter.com wrote: stream.twitter.com/1/statuses/filter.json track=keyword1,keyword2 etc. -John On Thu, Oct 7, 2010 at 10:13 AM, D. Smith

Re: [twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread Taylor Singletary
Hi D, There are a few different levels of the streaming API. You can use the sample endpoint without any kind of approval from Twitter, using a Twitter account under your control for login. Access beyond the sample end point requires approval -- the process for approval begins at

Re: [twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread John Kalucki
Every account has default-level access. On Thu, Oct 7, 2010 at 10:26 AM, D. Smith emai...@sharedlog.com wrote: Can I use any Twitter account username/password or does the account have to be registered with Twitter API? On Oct 7, 1:18 pm, John Kalucki j...@twitter.com wrote:

Re: [twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread M. Edward (Ed) Borasky
Real time tracking is best done with Streaming, but can be done with Search. Historical search back in time is done only with Search and only covers the indexed tweets that Twitter makes available. Long-term historical search can be done with Topsy, but I'm not familiar with the details.

[twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread D. Smith
Sorry for asking all these questions, but what is the sample endpoint? Does it contain real tweets or just some sample tweets for testing purposes only? On Oct 7, 1:33 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi D, There are a few different levels of the streaming API. You

Re: [twitter-dev] Re: Is authentication required to use Streaming API?

2010-10-07 Thread Tom van der Woerdt
Basically: sample will send you 1% of all tweets that are sent. ;-) However: I believe that you will want to use filter.json. Taylor forgot to mention that filter.json is also free to use. Sample URL which uses filter : http://stream.twitter.com/1/statuses/filter.json?track=Twitter Tom On