Subject: | Unable to locate the JSON format data... |
A couple of weeks ago, the module started to fail on every address given
to it with the error "Unable to locate the JSON format data in google's
response."
I believe the problem is due to the fact that Google has removed the
space after the comma between function parameters in loadVPage,
rendering the extracting regular expression incorrect.
I'm afraid I'm not experienced with using patch, but all I did to fix it
was add a question mark after that space in the re on line 265 of
Google.pm v0.05 as follows:
was: m#loadVPage\((.+), "\w+"\);}//]]>#is
now: m#loadVPage\((.+), ?"\w+"\);}//]]>#is