How to insert google page as data (xml)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there a way to insert a google page into my application and parse it into
xml without using the google api kit?
 
oforia said:
is there a way to insert a google page into my application and parse it into
xml without using the google api kit?

See the "why would anyone want XHTML" thread :o)

Depending on the type of application you are writing, you could either
parse the HTML as text using regexps or load it into IE and navigate the
DOM using this approach:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstec
hart/html/vsgrfWalkthroughAccessingDHTMLDOMFromC.asp

In both cases you will be vulnerable to Google changing the design of
the page; the page is not an API...
 
Back
Top