views:

37

answers:

1

I would like to implement twitter search, but with the use of their API. I think most of you know the search which they have on their home page.

Search gives such link: http://twitter.com/#search?q=ipod ubuntu

I looked in API for a possible solution, but didn't find it. Also it would be nice if the response to the request could be in XML format, since I know that some API methods allow only json or atom.

Hope there is one(with the use of API).

+1  A: 

Have you looked at this twitter search api documentation? You can return results in atom or json simply with http://search.twitter.com/search.atom?q=ipod+ubuntu or http://search.twitter.com/search.json?q=ipod+ubuntu

Isn't atom an xml language? Shouldn't a decent xml parser be able to handle atom?

fearoffours
But as I said earlier it would be great is they could be in XML and no didn't see it. Thanks for the link.
Eugene