Thanks for prompt reply but I had to mention that I'm using the Search
API in a web service and at the first step I need to convert the
retrieved tweets to JSON or XML.
my tweet search is like this:

Twitter twitter = new TwitterFactory().getInstance();
try {
        Query q = new Query(args[0]);
        q.setRpp(100);
        q.setGeoCode(new GeoLocation(34.0522222, -118.2427778), 2500,
Query.KILOMETERS);
        QueryResult result = twitter.search(q);
        List<Tweet> tweets = result.getTweets();
} catch...

regards


On Mar 7, 1:05 pm, Scott Wilcox <sc...@dor.ky> wrote:
> http://dev.twitter.com/doc/get/statuses/show/:id
>
> Sent from my iPhone
>
> On 7 Mar 2011, at 11:56, "mahorad" <maho...@gmail.com> wrote:
>
>
>
>
>
>
>
> > Hello Gurus
> > How can I get the XML or JSON format out of a Tweet or a bunch of
> > Tweets?
>
> > --
> > Twitter developer documentation and resources:http://dev.twitter.com/doc
> > API updates via Twitter:http://twitter.com/twitterapi
> > Issues/Enhancements Tracker:http://code.google.com/p/twitter-api/issues/list
> > Change your membership to this 
> > group:http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk

Reply via email to