[twitter-dev] Re: Streaming API Terms Of Service change - multiple simultaneous logins discouraged

2009-05-09 Thread Jesse Stay
Not to be picky, but can we get these announcements on the twitter-announce list in the future? Who is this John and is he a real Twitter employee? On Sat, May 9, 2009 at 10:04 PM, John Kalucki wrote: > > Note: The Streaming API is currently under a limited alpha test, > details below. > > Multi

[twitter-dev] Streaming API Terms Of Service change - multiple simultaneous logins discouraged

2009-05-09 Thread John Kalucki
Note: The Streaming API is currently under a limited alpha test, details below. Multiple concurrent connections from the same account are discouraged on the Streaming API. Starting on or after the afternoon of Monday, May 11th (22:00:00 11-May-2009 UTC) the service will gently enforce this policy

[twitter-dev] Re: Get all twitts that have a url domain

2009-05-09 Thread Pablo Augusto
Thanks chad, im currently writing a class to parse twitts with advanced filter.Once its done will share here. Thanks for your informations. On Sat, May 9, 2009 at 7:46 PM, Chad Etzel wrote: > > The Search API offers no advanced character/word/wildcard/regex > filtering. You will have to scan

[twitter-dev] Re: Get all twitts that have a url domain

2009-05-09 Thread Chad Etzel
The Search API offers no advanced character/word/wildcard/regex filtering. You will have to scan each tweet itself. This is why you search for the super-set of results you want, then parse them yourself. A one line regex match in PHP will figure out if the tweet matches your desired filter or n

[twitter-dev] Re: Get all twitts that have a url domain

2009-05-09 Thread Pablo Augusto
And how ill get shure that the url contain /xxx and not only http://url.me(example). I'll have to parse any twitt? Maybe now or in future more accurace filter will solve this. For example, a search like this: $tw=new twitt_search(); $tw->query("http://url.me/???";); printr $tw->results(); filter

[twitter-dev] Re: Can't Search for This String

2009-05-09 Thread Chad Etzel
Probably because Twitter considers $ by themselves to be unsearchable punctuation. They added it as a token modifier a while ago (like # for hashtags), so you could search things like $BAC, but $$ itself won't get any hits. Same as searching # by itself yields no results. StockTwits parses thei

[twitter-dev] Can't Search for This String

2009-05-09 Thread Joe McCann
Anyone know why zero results for the string "$$" appear when searched for on twitter? http://search.twitter.com/search?q=%24%24

[twitter-dev] Re: Get all twitts that have a url domain

2009-05-09 Thread Chad Etzel
Best bet would be to search for "url.me" (or whatever the domain is) using the Search API and doing some post processing to make sure the results is "valid" for your needs. -Chad On Sat, May 9, 2009 at 6:17 PM, Pablo Augusto wrote: > Hello, > I'm mading a short url system and want know the best

[twitter-dev] Get all twitts that have a url domain

2009-05-09 Thread Pablo Augusto
Hello, I'm mading a short url system and want know the best pratice to get all twitts that have used my url service. Whats the best, to cron a php script to get public_timeline, parse each post to check if have text like "http://url.me/"; or use search api? All opinions about it are welcome.

[twitter-dev] Re: all replies by friends

2009-05-09 Thread Abraham Williams
I would think that statuses/friends_timeline [1] would not be effected by @-reply settings [2]. If it is your only option is to use the search method you mentioned. The down side of this is protected accounts are not included. [1] http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-fri

[twitter-dev] Re: all replies by friends

2009-05-09 Thread voorwiel
On May 9, 7:28 pm, Cameron Kaiser wrote: > > Is there a feature in the API to get all replies from an account's > > friends in one single call? I'm trying to get a timeline similar to > > what a web site user sees with Notices > @ Replies set to "Show me all > > @ replies". > > Have you tried sta

[twitter-dev] Re: Getting id for last status

2009-05-09 Thread Yazmin
Oh thanks! I misunderstood what was getting returned to me by the update. I see it now that you mentioned it. :) Yazmin On May 9, 3:57 pm, Chad Etzel wrote: > When you post a new status update, the return value/information should > contain the new id of the update. > -Chad >

[twitter-dev] Re: Planned site maintenance Friday, May 8th 2PM-3PM PST and Monday, May 11th Noon-1PM PST

2009-05-09 Thread Chad Etzel
On Sat, May 9, 2009 at 9:43 AM, Dossy Shiobara wrote: > Ah, the stampeding herd cold start design problem ... > > The simplest solution is to add some jitter - i.e., don't expire things > exactly after 3600 seconds.  Set the expiration to be X +/- N, where X is > your lifetime and N is the jitter

[twitter-dev] Re: Help with OAuth and the "phrase" parameter in Search

2009-05-09 Thread Ammo Collector
Dammit, I knew it would be simple. Thanks for the quick response! On May 9, 12:05 pm, Abraham Williams <4bra...@gmail.com> wrote: > http://search.twitter.comrequires no authentication. Just call it directly > without OAuth. > > > > > > On Sat, May 9, 2009 at 13:37, Ammo Collector wrote: > > > H

[twitter-dev] Re: Getting id for last status

2009-05-09 Thread Chad Etzel
When you post a new status update, the return value/information should contain the new id of the update. -Chad On Sat, May 9, 2009 at 3:53 PM, Yazmin wrote: > > Hi, > > I want to make sure I'm going about this the right way, so any help > would be appreciated. > > I'm writing an application that

[twitter-dev] oAuth "Chaining"

2009-05-09 Thread Joe McCann
Hello Folks, I have built a simple bookmarklet ( http://www.subprint.com/blog/projects/imgly_bookmarklet/ ) that utilizes Img.ly's web service for posting pictures and tweets via Img.ly's REST API. If you use Img.ly directly, via their website, they support oAuth authentication to post your pho

[twitter-dev] Getting id for last status

2009-05-09 Thread Yazmin
Hi, I want to make sure I'm going about this the right way, so any help would be appreciated. I'm writing an application that sends a status to Twitter, but I also have to get the status ID that Twitter generated for the status just sent. So basically, I send my status update, then turn right ba

[twitter-dev] Re: Help with OAuth and the "phrase" parameter in Search

2009-05-09 Thread Abraham Williams
http://search.twitter.com requires no authentication. Just call it directly without OAuth. On Sat, May 9, 2009 at 13:37, Ammo Collector wrote: > > Hi, I'm trying to use Twitter Search to find Retweets by performing a > phrase search "r...@screen_name". This can be performed by using the > follo

[twitter-dev] Help with OAuth and the "phrase" parameter in Search

2009-05-09 Thread Ammo Collector
Hi, I'm trying to use Twitter Search to find Retweets by performing a phrase search "r...@screen_name". This can be performed by using the following: http://search.twitter.com/search.atom?q=&phrase=...@klout&lang=all&rpp=10&page=1 However, urlencode the "phrase" parameter and the results are di

[twitter-dev] Re: trouble with twitter in iframe!

2009-05-09 Thread Cameron Kaiser
> I cannot get my twitter page to appear within an iframe. Is this a > twitter standard or is there something I can do to resolve this? Can > someone please advise me? You cannot place a twitter user page within an . This was disabled for security reasons. If you need something like this, your be

[twitter-dev] Re: trouble with twitter in iframe!

2009-05-09 Thread Abraham Williams
Twitter uses JavaScript to break iframes because of an issue with clickjacking a while ago. This is unlikely to change. On Sat, May 9, 2009 at 07:05, dnsant wrote: > > I cannot get my twitter page to appear within an iframe. Is this a > twitter standard or is there something I can do to resolve

[twitter-dev] Re: all replies by friends

2009-05-09 Thread Cameron Kaiser
> Is there a feature in the API to get all replies from an account's > friends in one single call? I'm trying to get a timeline similar to > what a web site user sees with Notices > @ Replies set to "Show me all > @ replies". Have you tried statuses/mentions? http://apiwiki.twitter.com/T

[twitter-dev] xml feed for data mining is not fresh

2009-05-09 Thread AJ
problem with data mining xml feed: the first call to api returns a fresh feed; but subsequent calls return the same feed. maybe a cache. did the server forget to return to normal operation? -aj

[twitter-dev] Re: since_id basic usage confusion

2009-05-09 Thread Sherif
Joel - with paging. The basic principle is this 1) As you start, keep the last since_id persisted somewhere 2) When you reach the end of the page, progress to the second page, with the same since_id etc.. and you keep going till you cant get any more. Next time you want to refresh/resume data pol

[twitter-dev] all replies by friends

2009-05-09 Thread voorwiel
Hi, Is there a feature in the API to get all replies from an account's friends in one single call? I'm trying to get a timeline similar to what a web site user sees with Notices > @ Replies set to "Show me all @ replies". A call to statuses/friends_timeline doesn't return replies to users that th

[twitter-dev] trouble with twitter in iframe!

2009-05-09 Thread dnsant
I cannot get my twitter page to appear within an iframe. Is this a twitter standard or is there something I can do to resolve this? Can someone please advise me?

[twitter-dev] Twitter4J 2.0.3 released - fixed JDK1.4.2 / Processing compatibility issue

2009-05-09 Thread Yusuke Yamamoto
Hi all, Twitter4J 2.0.3 is available for download. http://yusuke.homeip.net/twitter4j/en/index.html#download It'll be available at the Maven central repository in 24 hours. http://repo1.maven.org/maven2/net/homeip/yusuke/twitter4j/ Until then, you may use the snapshot repository instead. http://y

[twitter-dev] Re: Planned site maintenance Friday, May 8th 2PM-3PM PST and Monday, May 11th Noon-1PM PST

2009-05-09 Thread Dossy Shiobara
On 5/8/09 10:15 PM, Doug Williams wrote: 2) Some of you may have noticed problems about an hour after the restart. Some important objects expire from cache after an hour. Since there was a huge influx of objects expiring 1 hour after the restart presumably together there were problems as the dat