Re: [twitter-dev] open source twitter-text

2010-04-16 Thread Patrick Kennedy
I hate to leave things dangling - so, I suppose this is the best way to use twitter-text ruby gem, as the twitter-text provides a Twitter module layout - # Extraction class MyClass attr_accessor :usernames def initialize @usernames = "Mentioning @biz and @jack" end end $KCODE = 'u'

[twitter-dev] Inconsistent Accuracy of Phrase Searches

2010-04-16 Thread Robby Grossman
Hi all, I'm hacking on an app that relies heavily on phrase searching, and have gotten very inconsistent results. Most search queries with phrases work as advertised. See: http://search.twitter.com/search?q=&ands=&phrase=%222day+let%27s+dream+with+our+eyes+wide+open!%22&ors=¬s=&tag=&lang=all&from=

Re: [twitter-dev] Re: @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread M. Edward (Ed) Borasky
On 04/16/2010 04:21 PM, Shannon Whitley wrote: > I've updated Twit Connect for WordPress to include @anywhere. It adds > hovercards, follow buttons, and tweetboxes. I really like the tweetbox on > the WordPress comment form. > > http://wordpress.org/extend/plugins/twitconnect Looking good! Bye-

Re: [twitter-dev] jQuery being loaded multiple times using @anywhere

2010-04-16 Thread Abraham Williams
Have a look at the Google Analytics Asynchronous page: http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html Abraham 2010/4/16 M. Edward (Ed) Borasky > On 04/16/2010 01:51 PM, Dan Webb wrote: > > Hi Matt,

Re: [twitter-dev] jQuery being loaded multiple times using @anywhere

2010-04-16 Thread M. Edward (Ed) Borasky
On 04/16/2010 01:51 PM, Dan Webb wrote: > Hi Matt, > > At the moment there are 2 references to jQuery. We'd rather load in > our own version of JQuery rather than detecting it in partner pages so > we can be assured of the version we are running on top of. The reason > its loaded twice is that i

[twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread M. Edward (Ed) Borasky
I'd like to forward this to the Crisis Mapping / Disaster Response mailing lists I'm on. They're been very active with Twitter. Is that OK? On 04/16/2010 10:54 AM, Marcel Molina wrote: > Hey everyone. One of the things we talked about at Chirp is the new > Annotations feature we're working on. In

Re: [twitter-dev] Re: @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread M. Edward (Ed) Borasky
On 04/16/2010 04:21 PM, Shannon Whitley wrote: > I've updated Twit Connect for WordPress to include @anywhere. It adds > hovercards, follow buttons, and tweetboxes. I really like the tweetbox on > the WordPress comment form. > > http://wordpress.org/extend/plugins/twitconnect Thanks!! I'll chec

[twitter-dev] Re: Annotation details

2010-04-16 Thread kidehen
All, Re. annotations has anyone seen this example re. compact 3-part (tuple) statements: http://semantictwitter.appspot.com/ Kingsley On Apr 14, 5:05 pm, James Teters wrote: > Just curious if there is any documentation on how annotations will be > implemented? > > Any ideas on size limitations

[twitter-dev] Re: @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread Robby Grossman
Nice! I made a stand-alone version for people who prefer the barebones approach. Not approved at Wordpress.org yet but it's up at github: http://github.com/freerobby/at-anywhere-for-Wordpress --Robby On Apr 16, 7:21 pm, Shannon Whitley wrote: > I've updated Twit Connect for WordPress to include

Re: [twitter-dev] Problems getting Twitter @anywhere up and running...

2010-04-16 Thread Isaac Hepworth
Looks like you're using a proxy server which doesn't trust the Equifax root certificate. Is the proxy server under your control? Isaac On Fri, Apr 16, 2010 at 8:14 AM, techno wrote: > I am trying to do the most basic procedure possible here... yet seems > I have some sort of network related is

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Shannon Whitley
I think this will be a great addition to the platform. I suppose it will be up to each software client to determine how (classic) retweets are handled. The annotations could be copied and edited. I assume new retweets will simply reference the original tweet and its annotations. On Fri, Apr 16,

[twitter-dev] Re: Read only @anywhere application bug fix

2010-04-16 Thread Albert Stein
Is this what caused the issue I wrote about this morning - where the follow buttons became "user not found" buttons after a few refreshes and then after say 20-30 minutes the buttons would revert to the correct follow buttons? thanks On Apr 16, 6:59 pm, Todd Kloots wrote: > There is a known bug

Re: [twitter-dev] Re: @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread Shannon Whitley
I've updated Twit Connect for WordPress to include @anywhere. It adds hovercards, follow buttons, and tweetboxes. I really like the tweetbox on the WordPress comment form. http://wordpress.org/extend/plugins/twitconnect On Fri, Apr 16, 2010 at 3:11 PM, Pelechati wrote: > You can visit htt

[twitter-dev] Adding in_reply_to_status_id to Tweetbox

2010-04-16 Thread Quy
When I use tweetbox to reply to a user, how do I pass the status_id so Twitter recognizes that it is a reply to a certain tweet? Basically, how do I pass the "in_reply_to_status_id=" where is the tweet that is being replied to? I'm assuming if I start the tweet with an "@" sign, then Twe

Re: [twitter-dev] jQuery being loaded multiple times using @anywhere

2010-04-16 Thread Abraham Williams
There is the freenode #twitterapi channel. Abraham On Fri, Apr 16, 2010 at 15:06, Peter Denton wrote: > Is there an IRC channel for anywhere? Id love to chat with some folks about > what Im experiencing in testing. > > > On Fri, Apr 16, 2010 at 1:51 PM, Dan Webb wrote: > >> Hi Matt, >> >> At t

[twitter-dev] Read only @anywhere application bug fix

2010-04-16 Thread Todd Kloots
There is a known bug in the @anywhere application creation flow that results in @anywhere applications having read-only access. This results in @anywhere widgets like the TweetBox and Follow Button not working. We just rolled out a fix to all currently registered @anywhere applications. However

Re: [twitter-dev] Recommended ways to demultiplex the search stream with thousands of searches

2010-04-16 Thread Andrew Badera
I know it's not Web 2.0-cool, but I'm writing to SQL Server 2008 (Standard, x64) and using fulltext indexing/searching from there. On production hardware, I hardly see any real impact as far as latency goes, even on busy predicates. I can't imagine that the lighter-weight/more efficient Lucene woul

Re: [twitter-dev] Recommended ways to demultiplex the search stream with thousands of searches

2010-04-16 Thread Mark McBride
One idea off the top of my head: write tweets to something like Lucene, and then rely on its more sophisticated query engine to pull tweets. You'll sacrifice some latency here of course. ---Mark http://twitter.com/mccv On Fri, Apr 16, 2010 at 3:47 PM, Jeffrey Greenberg < jeffreygreenb...@gma

Re: [twitter-dev] Re: parent.twttr.anywhere._signedOutCookiePresent

2010-04-16 Thread Dan Webb
Apologies for this. There was an issue with our CDN causing this which we've now fixed. It's not related to cookies. Thanks, Dan On Fri, Apr 16, 2010 at 2:54 PM, Jon wrote: > I was getting that same error earlier. Clearing out my cookies seemed > to fix it, but doesn't instill confidence... >

[twitter-dev] Do the twttr.anywhere.tweetBox() boxes actually post tweets for anyone?

2010-04-16 Thread Jon
So, I've got the tweetBoxes rendering just fine and doing the onTweet callbacks, but they don't actually post anything to my twitter profile (and, yes, I've authorized the app). Even the example boxes on http://dev.twitter.com/anywhere/begin#tweetbox that post as the "My Pet Monster" app don't crea

[twitter-dev] Re: parent.twttr.anywhere._signedOutCookiePresent

2010-04-16 Thread Jon
I was getting the same error earlier. Clearing all my cookies seemed to fix it, but doesn't instill confidence... On Apr 16, 2:25 pm, Craig wrote: > Hello, > > @Anywhere (just a simple install following the Getting Started > instructions) worked on my site yesterday. Today, it is dead: > > platfo

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Nigel Legg
I'd say keep it all on dev.twitter.com - minimise sites to visit. On 16 April 2010 22:44, Raffi Krikorian wrote: > i expect we'll put a page up on dev.twitter.com that will allow people to > list out namespaces, keys, etc. all for the community. > > > On Fri, Apr 16, 2010 at 2:41 PM, Robby Gro

[twitter-dev] Re: @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread Pelechati
You can visit http://apture.com/plugin for a wordpress/drupal plugin for @anywhere functionality. Apture has been serving up @anywhere behavior for over a year in a single line of javascript. On Apr 16, 2:45 pm, Robby Grossman wrote: > A Wordpress plugin makes a lot of sense, as it would let non

[twitter-dev] Recommended ways to demultiplex the search stream with thousands of searches

2010-04-16 Thread Jeffrey Greenberg
So I'm looking at the streaming api (track), and I've got thousands of searches. ( http://tweettronics.com ) I mainly need it to deal with terms that are very high volume, and to deal search api rate limiting. The main difficulty I'm thinking about is the best way to de-multiplex the stream back

[twitter-dev] Recommended ways to demultiplex the search stream with thousands of searches

2010-04-16 Thread Jeffrey Greenberg
So I'm looking at the streaming api (track), and I've got thousands of searches. ( http://tweettronics.com ) I mainly need it to deal with terms that are very high volume, and to deal search api rate limiting. The main difficulty I'm thinking about is the best way to de-multiplex the stream back

[twitter-dev] Business Development

2010-04-16 Thread Lucein
Hello, I thought I would query here to see if anyone has an idea of who I can contact associated with business development with twitter. Not to get into to many details on a public forum, my clients are in the entertainment arena and want to develop a mutually beneficial relationship with twitter.

[twitter-dev] Re: parent.twttr.anywhere._signedOutCookiePresent

2010-04-16 Thread Jon
I was getting that same error earlier. Clearing out my cookies seemed to fix it, but doesn't instill confidence... On Apr 16, 2:25 pm, Craig wrote: > Hello, > > @Anywhere (just a simple install following the Getting Started > instructions) worked on my site yesterday. Today, it is dead: > > platf

Re: [twitter-dev] jQuery being loaded multiple times using @anywhere

2010-04-16 Thread Peter Denton
Is there an IRC channel for anywhere? Id love to chat with some folks about what Im experiencing in testing. On Fri, Apr 16, 2010 at 1:51 PM, Dan Webb wrote: > Hi Matt, > > At the moment there are 2 references to jQuery. We'd rather load in > our own version of JQuery rather than detecting it i

[twitter-dev] Twitter Archive - Looking for an API...

2010-04-16 Thread Jeffrey Greenberg
Ok so Google has an archive and the Library of Congress has an archive... I want to access someone's archive of Tweets via a solid, performant, rest-ful API... any suggestions? Twitter? ps: I'm worried the LOC will not be performant enough, and they are making noises like "for research use", whic

[twitter-dev] Re: @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread Robby Grossman
A Wordpress plugin makes a lot of sense, as it would let non- developers easily integrate with it. I was going to look over the docs this weekend to see what would be involved in writing a generic @anywhere plugin for hosted Wordpress installs. --Robby On Apr 16, 2:09 am, "M. Edward (Ed) Borasky"

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Raffi Krikorian
i expect we'll put a page up on dev.twitter.com that will allow people to list out namespaces, keys, etc. all for the community. On Fri, Apr 16, 2010 at 2:41 PM, Robby Grossman wrote: > Thanks for all of the info, Marcel. Cool stuff! > > How would people feel about a wiki for developers to shar

[twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Robby Grossman
Thanks for all of the info, Marcel. Cool stuff! How would people feel about a wiki for developers to share thoughts on how to use/standardize on annotations? That would give us a chance to flesh out some of the namespacing issues that have been raised so that we can hit the ground running when Ann

[twitter-dev] parent.twttr.anywhere._signedOutCookiePresent

2010-04-16 Thread Craig
Hello, @Anywhere (just a simple install following the Getting Started instructions) worked on my site yesterday. Today, it is dead: platform0.twitter.com/1/javascripts/client.js:1: Uncaught TypeError: Object function (Z,b){if(typeof Z=="function") {b=Z;Z=twttr.anywhere._config.defaultVersion}if(

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Nigel Legg
Been following the conversation; very interesting to see, even today, the devlopment of ideas around potential standards from the community of developers. To see the trends, most used, etc will definitely help us work towards the namespaces and keys with the most utility for ourselves and our users

Re: [twitter-dev] @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread Eric Marden - API Hacker
On Fri, Apr 16, 2010 at 1:09 AM, M. Edward (Ed) Borasky wrote: > Are there any plugins for @anywhere that will run on Drupal and > WordPress? My blog is on WordPress, and I want to get rid of as many > non-Twitter gizmos and widgets as possible. I'll be keeping AddToAny, > since it goes to Develop

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Marcel Molina
I've talked to the analytics team. Three main metrics we're going to work to surface on something like dev.twitter.com initially (and maybe even an API so you all can build experiences/explorers around annotations): 1) All time most used namespaces/keys. 2) Trending namespace/keys. 3) Most widely

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Zac Bowling
Thanks for the insight this early into everything. This helps from the communication standpoint. I hope this devolve thought into design by commit on this thread though for the name-spacing. I have a few ideas but I'm reserving them because they may be obvious and not going to hurt me because I ca

Re: [twitter-dev] jQuery being loaded multiple times using @anywhere

2010-04-16 Thread Dan Webb
Hi Matt, At the moment there are 2 references to jQuery. We'd rather load in our own version of JQuery rather than detecting it in partner pages so we can be assured of the version we are running on top of. The reason its loaded twice is that it's used both on the client and on the server that e

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Marcel Molina
This is a great idea for how to bootstrap and fuel the adoption and consensus on namespaces and key names. I'm going to talk to our analytics team and see if we can surface analytics on the most used namespaces and those namespace's most used keys. On Fri, Apr 16, 2010 at 1:05 PM, Jaanus wrote:

Re: [twitter-dev] @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread Abraham Williams
I will be publishing a Drupal module soon. http://drupal.org/project/anywhere Abraham On Fri, Apr 16, 2010 at 06:09, M. Edward (Ed) Borasky wrote: > Are there any plugins for @anywhere that will run on Drupal and > WordPress? My blog is on WordPress, and I wan

[twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread James A. Rosen
Developers can use reverse-FQDNs (like Java's packages) for their namespaces, which prevents collisions without actually requiring nesting. -James A. Rosen On Apr 16, 2:51 pm, Marcel Molina wrote: > More namespace nesting would of course increase people's ability to > taxonomize. It's a splipper

[twitter-dev] Annotations XML format

2010-04-16 Thread gcnovus
Marcel Molina (@noradio) recently posted the following announcement to the Twitter API Announcements list: http://groups.google.com/group/twitter-api-announce/browse_thread/thread/fa5da2608865453 In it, he describes a new Annotation model consisting of attached to each tweet. One of the sticking

[twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Jaanus
Another 2c: you should think about publishing numbers/stats for annotations. Easiest to start on the level of namespaces. Publish stats about popularity of namespaces: how many tweets and how many users use which namespaces. And don't do "that's a good idea and there are still many moving parts and

Re: [twitter-dev] Re: How to parse the output of Twitter Search API Method: search?

2010-04-16 Thread Peter Denton
are you asking for this? $xml = simplexml_load_string($response); print_r($xml); On Fri, Apr 16, 2010 at 11:29 AM, Dushyant wrote: > How do I find the hierarchical structure of the search reply? > > On Apr 16, 8:55 pm, Mark McBride wrote: > > Atom is an XML dialect, so the approach you're using

Re: [twitter-dev] Re: How to parse the output of Twitter Search API Method: search?

2010-04-16 Thread Abraham Williams
You can also just look at hurl.it if you want. http://hurl.it/hurls/50c8e758399af60c22921621350a65ebb51c8d25/4b2d4befa66a70f61ea2b0f92ee806cb7c5d9705 Abraham On Fri, Apr 16, 2010 at 18:40, Mark McBride wrote: > My suggestion is to use curl, take a look at the output, and reverse > engineer tha

Re: [twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread gabriele renzi
On Fri, Apr 16, 2010 at 9:21 PM, dhavaln wrote: > but this will create islands of information and information retrieval > based > on annotations will be difficult for other applications. > i.e. amazon.com:book-rating{isbn:34345434, rating: 5} > > it should be easier for other applications to find

Re: [twitter-dev] @Blogger Template Error adding @Anywhere

2010-04-16 Thread Abraham Williams
Change "&v=1" to "&v=1". Abraham On Fri, Apr 16, 2010 at 17:54, Darin wrote: > Your template could not be parsed as it is not well-formed. Please > make sure all XML elements are closed properly. > XML error message: The reference to entity "v" must end with the ';' > delimiter. > > Using a @Bl

[twitter-dev] Re: Favorites Error

2010-04-16 Thread Orian Marx (@orian)
Yeah I realized shortly after writing that that I was already handling this bug, and it was only that I just happened to be noticing it again and thinking that it was a recent occurrence :-) On Apr 15, 12:14 pm, btjones wrote: > FYI, looks like this bug was submitted quite a while ago. > > http:/

[twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread Jaanus
I feel what Marcel proposed is pretty cool, and does not need much change before rolling out the first version, to start discovering what needs to be improved based on real use. Rogue apps are a concern with or without annotations. It's the same problem as, say, spamming people with @mentions or #

[twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread dhavaln
but this will create islands of information and information retrieval based on annotations will be difficult for other applications. i.e. amazon.com:book-rating{isbn:34345434, rating: 5} it should be easier for other applications to find information based on annotations. On Apr 16, 11:59 pm, gabr

Re: [twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread Marcel Molina
We definitely want to have documents on dev.twitter.com with best practices and guildelines. That will be key. We're looking for everyone to help devise the rules of the road. On Fri, Apr 16, 2010 at 11:59 AM, gabriele renzi wrote: > On Fri, Apr 16, 2010 at 8:51 PM, Marcel Molina wrote: > > Mor

Re: [twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread gabriele renzi
On Fri, Apr 16, 2010 at 8:51 PM, Marcel Molina wrote: > More namespace nesting would of course increase people's ability to > taxonomize. It's a splippery slope though and we are trying to balance > expressiveness with simplicity. Providing for arbitrarily nested namespaces > increases complexity

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Raffi Krikorian
right now, i could send out a whole bunch of tweets with crappy yfrog URLs (that all return 404s). to end users, again, it seems like yfrog is a bad service. i mean, you have good points - and i hear all of them - its not something we are going to with for now, but i totally understand everything

Re: [twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread Marcel Molina
More namespace nesting would of course increase people's ability to taxonomize. It's a splippery slope though and we are trying to balance expressiveness with simplicity. Providing for arbitrarily nested namespaces increases complexity considerably both from an implementation perspective and a comp

[twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Dewald Pretorius
Raffi, It's not about people using or not using rogue apps. It's about rogue apps poisoning the annotation data and ruining it for everybody. Rogue apps can continue to refresh their consumer keys with new accounts and OAuth app registrations, as soon as the one currently in use is suspended. Me

[twitter-dev] Re: [twitter-api-announce] Early look at Annotations

2010-04-16 Thread gabriele renzi
> * What is an annotation more exactly exactly? > First off let's be clearer about what an annotation is. An annotation is a > namespace, key, value triple. A tweet can have one or more annotations. > Namespaces can have one or more key/value pairs. first, annotations are cool, thanks. But why tri

Re: [twitter-dev] Re: How to parse the output of Twitter Search API Method: search?

2010-04-16 Thread Mark McBride
My suggestion is to use curl, take a look at the output, and reverse engineer that. If you want a more formal approach, you can look at the Atom RelaxNG specification here http://atompub.org/2005/08/17/atom.rnc, but search results will have some additional customization on top of that. ---Mark

[twitter-dev] Re: Local trends broken (and gone from home page?)

2010-04-16 Thread tofubeer
How about a new API that gives the reason for a failure for those end points that do not support messages? Thanks, ..darcy On Apr 16, 10:10 am, Raffi Krikorian wrote: > Would love to, but then we may break backwards compatibility on old   > endpoints.  All "newer" endpoints return http error co

[twitter-dev] Re: How to parse the output of Twitter Search API Method: search?

2010-04-16 Thread Dushyant
How do I find the hierarchical structure of the search reply? On Apr 16, 8:55 pm, Mark McBride wrote: > Atom is an XML dialect, so the approach you're using should work fine >   ---Mark > > http://twitter.com/mccv > > On Fri, Apr 16, 2010 at 5:08 AM, Dushyant wrote: > > I am using the following

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Joseph Cheek
not necessarily - twitterbots are easy to build. you can't rely on lack of usage by humans to kill a twitter app. Raffi Krikorian wrote: if there happens to be a rogue app, then users will stop using it. -- Raffi Krikorian Twitter Platform Team http://twitter.com/raffi -- Subscription se

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Joseph Cheek
comments inline... Dewald Pretorius wrote: Marcel, I'd strongly urge you to consider a more structured and controlled environment for annotations. agreed, but... Ideally, I think an OAuth app must register a namespace, or subscribe to an existing namespace of another app, before it can c

Re: [twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Raffi Krikorian
> > I'd strongly urge you to consider a more structured and controlled > environment for annotations. > > Ideally, I think an OAuth app must register a namespace, or subscribe > to an existing namespace of another app, before it can create > annotations in that namespace. And these registrations an

Re: [twitter-dev] Re: Annotation details

2010-04-16 Thread Joseph Cheek
Wow, another cool idea introduced at Chirp (was it?). Honestly, I'd just love a free (beer) geocoding service that didn't force me to use google maps. Twitter has helped me make $10 so far (woohoo!); perhaps as I make more with it I'll actually be able to afford going to Chirp! 8-))) Joseph

[twitter-dev] Re: Early look at Annotations

2010-04-16 Thread Dewald Pretorius
Marcel, I'd strongly urge you to consider a more structured and controlled environment for annotations. Ideally, I think an OAuth app must register a namespace, or subscribe to an existing namespace of another app, before it can create annotations in that namespace. And these registrations and su

Re: [twitter-dev] Early look at Annotations

2010-04-16 Thread Joseph Cheek
awesome idea! I know I can find a use for it. Some concerns, however, below... Joseph Cheek Marcel Molina wrote: the sentence Namespaces aren't intended as a way for people to claim their little slice of the tweet space. and the sentence If you want a given key to mean one thing and someon

[twitter-dev] @Blogger Template Error adding @Anywhere

2010-04-16 Thread Darin
Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly. XML error message: The reference to entity "v" must end with the ';' delimiter. Using a @Blogger Template I made in Template Designer. Can be added no problem to classic @Blogger tem

[twitter-dev] Early look at Annotations

2010-04-16 Thread Marcel Molina
Hey everyone. One of the things we talked about at Chirp is the new Annotations feature we're working on. In short, it allows you to annotate a tweet with structured metadata. We're still working on Annotations, but I wanted to share with a wider audience beyond those I was able to talk to in perso

[twitter-dev] Back to your regularly scheduled program soon...

2010-04-16 Thread Taylor Singletary
Whew! We're all recovering from Chirp. Thanks to everyone who came, or watched remotely. And to those who weren't able to attend, we hope to see you next year or at another event! We've all got a bit of a backload right now that we're working through, and we appreciate your patience while we work

[twitter-dev] Re: Follow over oauth broken

2010-04-16 Thread wiscoDude
Follow and Unfollow with hovercards are not working for me. Doesn't matter what site has implemented hovercards. I first implemented hovercards on my development site and thought something wasn't working, then confirmed the same thing here http://dev.twitter.com/anywhere/begin and here http://fo

[twitter-dev] Redirecting to a user's profile

2010-04-16 Thread Berto
So I was able to find this handy call: http://twitter.com/account/redirect_by_id?id= by perusing the groups, but I was curious if there was an authenticate call I could pass this as a redirect URL to? It seems like the oauth/ authenticate end-point might do what I'm wanting, but I'm unsure and if

Re: [twitter-dev] Re: creating an @anywhere application with dynamic subdomains

2010-04-16 Thread Raffi Krikorian
I don't (yet) have a timeframe, but it's high on the list. We'll be evaluating the bug fix and todo list next week. On Apr 15, 2010, at 10:15 PM, Ram wrote: Hello Raffi, Thank you for your response! Is there an expected timeline for this? Just so we can plan our releases accordingly..

Re: [twitter-dev] Re: Local trends broken (and gone from home page?)

2010-04-16 Thread Raffi Krikorian
Would love to, but then we may break backwards compatibility on old endpoints. All "newer" endpoints return http error codes, Twitter error codes, and error strings. We also go through the pain of making sure the errors are sane. On Apr 16, 2010, at 9:29 AM, Dewald Pretorius wrote: P

Re: [twitter-dev] Javascript (not nec in the browser) client for streaming API?

2010-04-16 Thread Abraham Williams
Maybe this repo will help: http://github.com/andregoncalves/twitter-nodejs-websocket Abraham On Fri, Apr 16, 2010 at 00:39, nitin wrote: > Does anyone know of a Javascript HTTP client library that has the > right behavior for use with t

[twitter-dev] Re: Local trends broken (and gone from home page?)

2010-04-16 Thread Dewald Pretorius
Perhaps Twitter should return more meaning full error messages when API features are disabled, so that users don't see this: http://twitpic.com/1g0e3w On Apr 16, 1:23 pm, Abraham Williams <4bra...@gmail.com> wrote: > http://status.twitter.com/post/516695583/local-trends-disabled > >

[twitter-dev] Re: Local trends broken (and gone from home page?)

2010-04-16 Thread tofubeer
Thanks for the link... learn something new each day :-) ..darcy On Apr 16, 9:23 am, Abraham Williams <4bra...@gmail.com> wrote: > http://status.twitter.com/post/516695583/local-trends-disabled > > Abraham > > > > On Fri, Apr 16, 2010

Re: [twitter-dev] Local trends broken (and gone from home page?)

2010-04-16 Thread Abraham Williams
http://status.twitter.com/post/516695583/local-trends-disabled Abraham On Fri, Apr 16, 2010 at 09:08, tofubeer wrote: > This was reported about 2 days ago: > > http://code.google.com/p/twitter-api/issues/detail?id=1584 > > http://t

[twitter-dev] Local trends broken (and gone from home page?)

2010-04-16 Thread tofubeer
This was reported about 2 days ago: http://code.google.com/p/twitter-api/issues/detail?id=1584 http://twitter.com/trends/current.xml and http://api.twitter.com/1/trends/(any number).xml both return: /trends/current.xml Sorry, you do not have access to this endpoint. I went to see if

Re: [twitter-dev] Re: Update on Missing tweets from Profile page issue

2010-04-16 Thread Mark McBride
Hrm. Can you open a ticket at twitter.com/help, and let me know the ID? Is anybody else seeing this? ---Mark http://twitter.com/mccv On Thu, Apr 15, 2010 at 6:39 PM, Adriano wrote: > Sorry, but I'm still with that issue. > > Can anyone check that? > > Greetings! > > On Apr 4, 11:30 pm, "A

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

2010-04-16 Thread Mark McBride
If you can duplicate this, can you send the exact text, tweet IDs and times of the runs? Latency on the streaming API should be better than it is in search (they're both pretty fast), so having the streaming API lag search is surprising. ---Mark http://twitter.com/mccv On Fri, Apr 16, 2010 a

[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] jQuery being loaded multiple times using @anywhere

2010-04-16 Thread Matt
We've just implemented @anywhere's hovercard feature on our website and noticed that in addition to the initial loading of jQuery from Google which we were already doing, by including the Twitter script it loads jQuery 2 or 3 more times from Google. This should be fixed to only load jQuery once if

[twitter-dev] @anywhere and JQuery

2010-04-16 Thread Dewald Pretorius
Does @anywhere check whether JQuery is already available/loaded on the page? If not, will it cause any problems / conflicts / bloating to have JQuery loaded twice? -- Subscription settings: http://groups.google.com/group/twitter-development-talk/subscribe?hl=en

Re: [twitter-dev] How to parse the output of Twitter Search API Method: search?

2010-04-16 Thread Mark McBride
Atom is an XML dialect, so the approach you're using should work fine ---Mark http://twitter.com/mccv On Fri, Apr 16, 2010 at 5:08 AM, Dushyant wrote: > I am using the following method > http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search > Now the output formats are json and atom

[twitter-dev] Re: Creating or editing applications through dev.twitter.com causes apps to lose "write access"

2010-04-16 Thread Dewald Pretorius
Ah, okay, that makes sense. It took the first app in the list and automatically authorized it, and the first app in my list happens to be a placeholder app. On Apr 16, 12:22 pm, Taylor Singletary wrote: > If you use the Twurl console, you're using your apps -- transparently behind > the scenes it

[twitter-dev] Problems getting Twitter @anywhere up and running...

2010-04-16 Thread techno
I am trying to do the most basic procedure possible here... yet seems I have some sort of network related issue. I am doing a basic: twttr.anywhere(onTwitterLoaded); function onTwitterLoaded(twitter) { alert("!!!"); } In my head I have: http://platform.twitter.com/ anywhere.js?id=MYA

Re: [twitter-dev] Re: Creating or editing applications through dev.twitter.com causes apps to lose "write access"

2010-04-16 Thread Taylor Singletary
If you use the Twurl console, you're using your apps -- transparently behind the scenes it issues the Twurl console an access token and makes calls on your behalf. I'll look to get this business with read/write access resolved quickly. Taylor Singletary Developer Advocate, Twitter http://twitter.

[twitter-dev] Re: OAuth Rate Limits

2010-04-16 Thread Nik Fletcher
Absolutely: understood. Thanks Raffi! -N On Apr 16, 2:43 pm, Raffi Krikorian wrote: > We're working on capacity to raise rate limits. As you can imagine,   > it's a complex relationship between the growth of our user base and   > the growth of our computing cluster... > > On Apr 16, 2010, at 6:

[twitter-dev] Re: creating an @anywhere application with dynamic subdomains

2010-04-16 Thread Ram
Hello Raffi, Thank you for your response! Is there an expected timeline for this? Just so we can plan our releases accordingly.. On Apr 15, 7:50 pm, Raffi Krikorian wrote: > unfortunately, not now.  we are working on a solution, but right now the > domain names have to have an exact string matc

[twitter-dev] How to parse the output of Twitter Search API Method: search?

2010-04-16 Thread Dushyant
I am using the following method http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search Now the output formats are json and atom. I want to parse the search results using PHP. Till now I have been following the following approach to parse xml outputs. $url = 'http://api.twitter.com/1/friend

[twitter-dev] Re: Tweet Box >> @Anywhere

2010-04-16 Thread Tim Rogers (@timrogers)
It doesn't work at all as far as I can see, which is pretty useless, let's be honest! Thanks, @timrogers On Apr 15, 3:09 pm, amrnt wrote: > Any body tries to post a status from Tweet Box and it posted > successfully to his Twitter? -- Subscription settings: http://groups.google.com/group/tw

[twitter-dev] Re: @anywhere Follow Button Issue

2010-04-16 Thread Albert Stein
FYI - once the "not found" issue starts - i get the same thing when i view the demo page on dev.twitter.com - the buttons on the anywhere page also say not found. please advise as i want to release today - thanks On Apr 15, 11:31 pm, Albert Stein wrote: > Hi - I am working with the @anywhere Fol

[twitter-dev] Javascript (not nec in the browser) client for streaming API?

2010-04-16 Thread nitin
Does anyone know of a Javascript HTTP client library that has the right behavior for use with the Twitter streaming API? Note : I mean a Javascript language client not necessarily bound to a browser context - could be run via spidermonkey or rhino, but must hold the connection open as needed for t

[twitter-dev] Re: @Anywhere + Sign in with Twitter / oAuth

2010-04-16 Thread sledev
I have the same thoughts we need to interact between APIs implicitly On Apr 15, 1:19 pm, Yousef El-Dardiry wrote: > I'm wondering whether we can auto sign-in users of our application to > @Anywhere when they have already signed in with Twitter to our > application using the oAuth API. It doesn't

[twitter-dev] Re: Follow over oauth broken

2010-04-16 Thread sledev
yep, i have the same using covercards via @anyware On Apr 16, 9:32 am, Rich wrote: > Is anyone else seeing follow and unfollow not working over oauth? > > Richard > > -- > Subscription > settings:http://groups.google.com/group/twitter-development-talk/subscribe?hl=en

[twitter-dev] @anywhere Drupal and WordPress Plugins?

2010-04-16 Thread M. Edward (Ed) Borasky
Are there any plugins for @anywhere that will run on Drupal and WordPress? My blog is on WordPress, and I want to get rid of as many non-Twitter gizmos and widgets as possible. I'll be keeping AddToAny, since it goes to Developer Zone, and I'll be keeping Twitoaster, since it threads conversations.

[twitter-dev] Re: Update on Missing tweets from Profile page issue

2010-04-16 Thread Adriano
Sorry, but I'm still with that issue. Can anyone check that? Greetings! On Apr 4, 11:30 pm, "Adriano R." wrote: > Hello, > > Anyone know what might be happening in this issue? > > Greetings! > > 2010/3/31 Adriano R. > > > > > Mark, > > > My twitter is @adrossetto > > > I have some tweets betwe

Re: [twitter-dev] API errors with Python Tools

2010-04-16 Thread Josh Roesslein
You might also consider looking into Tweepy [1]. It is a library I have written and released open source. The way I handle errors is I parse the message Twitter sends and then throw an exception. You can then catch it and extract that message. If you have any trouble at all we have both a mailing l

Re: [twitter-dev] OAuth Rate Limits

2010-04-16 Thread Raffi Krikorian
We're working on capacity to raise rate limits. As you can imagine, it's a complex relationship between the growth of our user base and the growth of our computing cluster... On Apr 16, 2010, at 6:38 AM, Nik Fletcher wrote: Hi Guys With the announcement of Userstreams [which look lik

Re: [twitter-dev] account/verify_credentials rate limited

2010-04-16 Thread Harshad RJ
Whoa! When did this endpoint become rate limited? This wiki page seems to be stale: http://apiwiki.twitter.com/Rate-limiting It says that verify-credentials is not rate-limited. Since this is an authenticated call, the rate-limit I guess gets applied to the authenticating user. If the authentica

[twitter-dev] OAuth Rate Limits

2010-04-16 Thread Nik Fletcher
Hi Guys With the announcement of Userstreams [which look like an excellent option for an app such as ours once streams are GA], does this affect the plan to offer 1500 requests per hour to OAuth clients? Whilst it's great to be able to make 350 requests PH now, what's the plan for ramping up to th

  1   2   >