I am trying to aggregate movie times off of google/movies search into a usable format such as json or xml
The Google AJAX api does not seem to work for this as you cannot do a movie search.
Does anyone know how this can be done?
I am trying to aggregate movie times off of google/movies search into a usable format such as json or xml
The Google AJAX api does not seem to work for this as you cannot do a movie search.
Does anyone know how this can be done?
Lookup the technique called web scraping.
Basically, you have to fetch the results page using some server-side scripting, and then extract data from it, to present in a formated way (json, xml, etc). Regular expressions or a DOM/XML parser could help.