views:

60

answers:

2

I basically would like to figure out if I could search for all tweets that talks about a url, for example, http://twitter.com/blah. Ideally the search should also count the shortened url. Any pointers?

+1  A: 

You may want to look into the Twitter API Documentation documentation which includes a search method.

Your request to also search for shortened URLs is curious, though - I understand why you might want to do that but I can't imagine how you believe it might work. Since Twitter itself doesn't hold the expanded version of a short URL, there wouldn't be any way to use the Twitter search function to look for shortened links. And since you can't predict which URL shortener people might use, you won't know what to look for anyway.

Greg Hewgill
I would agree about shortened URL problem. There is just no way to know the shortened URL of a specific URL.
Eclipsed4utoo
A: 

Topsy's Otter API provides this functionality: http://code.google.com/p/otterapi/wiki/Resources#/linkposts

Ben Brinckerhoff

related questions