[twitter-dev] Streaming API track vs. Search results

2010-04-16 Thread Mad Euchre
I wanted to test if my program is getting all the tweets it should. My simple test was track=Palin and I timed it for exactly 5 minutes. I got 3 tweets and several replies to. Then I immediately ran this: http://search.twitter.com/search.atom?q=Palin and looked for tweets in the last 5 minutes.

[twitter-dev] Streaming API - weird data in JSON text

2010-04-14 Thread Mad Euchre
Can someone please tell me why some tweets have the following as the text? text:\uc624\ub298 \uc2dc\uac00\ucd1d\uc561\uc774 $AAPL \uc740 $208.0B \uc774\uace0 $GOOG \uc740 $177.2B \ub124\uc694. \uadf8\ub3d9\uc548 \uc5c5\uce58\ub77d \ub4a4\uce58\ub77d\ud558\ub358 \ub450 \ud68c\uc0ac\uc758

[twitter-dev] Is there a way to to make the streaming API track parameter be case sensitive?

2010-03-23 Thread Mad Euchre
It appears it not. I have track=PASS and I get back Passing lane, Forward Pass, Pass the food, etc. Thanks To unsubscribe from this group, send email to twitter-development-talk+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[twitter-dev] Re: Need help with the streaming API syntax....specifically how to point to the track text file without using curl

2010-03-07 Thread Mad Euchre
at VB doc I have no idea how you would set that up.   ---Mark http://twitter.com/mccv On Fri, Mar 5, 2010 at 9:54 AM, Mad Euchre mad.ukrain...@gmail.com wrote: Thanks. Now I'm using the post method. How should I use the track parameter? Something like this?  address = New Uri(http

[twitter-dev] Re: Need help with the streaming API syntax....specifically how to point to the track text file without using curl

2010-03-05 Thread Mad Euchre
HTTP library. Each client library is different, check your docs. -John Kaluckihttp://twitter.com/jkalucki Infrastructure, Twitter Inc. On Tue, Mar 2, 2010 at 12:42 PM, Mad Euchre mad.ukrain...@gmail.com wrote: This is the VB code I would use to start any http stream            request

[twitter-dev] Re: Need help with the streaming API syntax....specifically how to point to the track text file without using curl

2010-03-05 Thread Mad Euchre
On Fri, Mar 5, 2010 at 9:54 AM, Mad Euchre mad.ukrain...@gmail.com wrote: Thanks. Now I'm using the post method. How should I use the track parameter? Something like this?  address = New Uri(http://stream.twitter.com/1/statuses/filter.json? track=Microsoft) I'm getting connected

[twitter-dev] Need help with the streaming API syntax....specifically how to point to the track text file without using curl

2010-03-02 Thread Mad Euchre
This is the VB code I would use to start any http stream request = DirectCast(WebRequest.Create(http:// stream.twitter.com/1/statuses/filter.json - name:pw), HttpWebRequest) request.Credentials = New NetworkCredential(name, pw) ' Get response