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: 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: 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