Forum Moderators: open
I'm trying again to implement correctly Google API on my site, but I would like to allow 'eñes' and 'acute accents' (as in 'jamón' or 'salón').
But when I try it, I get strange characters: é , ó , ...
Does anybody have any experience with Google API? I've read the (short) manual, but I'm not able.
Thank you very much.
The other thing is searches with extended characters - and yes, Google as any other major international engine supports usage of those.
confusing
-------------//-----------
print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"> \n";
...
my $service = SOAP::Lite
-> service('file:./GoogleSearch.wsdl');
my $result = $service
-> doGoogleSearch($key, $query, 0, 10, "false", "", "false", "", "", "");
--------------//-----------
And it does not work. Whay must I change?