Google Webservices API

Por el 16 de Agosto de 2006

en: Negocio| Programacion

Leyendo en el foro he encontrado una entrada pidiendo ayuda sobre Google Webservices, lo que se pretende es implementar el conocido “quiso decir” de Google en una aplicacion PHP, el tema es realmente interesante y por eso he decidido escribir un post que aborde este tema.

¿Has querido alguna vez enriquecer tu sitio con servicios de Google, Amazon, eBay o alguno de otros sitios a través de SOAP? En este tutorial vamos a ver como se puede usar el paquete SOAP de la PEAR para consultar a la extensa base de datos de Google, el objetivo será el uso del famoso “quiso decir” que nos ofrece opciones cuando tenemos errores de tipo tipográfico en alguna de nuestras búsquedas. Partimos de la base de que estás utilizando PHP 4 o superior y PEAR::SOAP 0.9.1, y que de igual manera estás familiarizado con PHP.

Primero de todo advertir de que el servicio de Google y PEAR::SOAP::SOAP continúan aún en estado beta, por reso tu podrías en un raro caso llegar a dar con un bug, pero no te preocupes no es lo común.

Podrías utilizar otras librerias disponibles como NuSOAP y algunos detalles de implementación seran diferentes siendo aplicable la misma teoría.

Configurando el módulo PEAR SOAP

A partir de la versión 4.3.0, el paquete principal de PEAR junto con los paquetes mas comunes, se instalan automaticamente, cuando se realiza la instalación de PHP, en las versiones anteriores hay que instalarlo por separado. Esto se hace en LINUX con el comando:

$ lynx -source http://go-pear.org | php


En caso de estar utilizando Windows, habra que ir a http://go-pear.org y descargar el cógido fuente que ahí se muestra, el cual posteriormente deberemos copiar en un archivo, al que pondremos por nombre go-pear.php y luego desde la linea de comandos (DOS) lo ejecutamos. Para ambos sistema operativos la instalación es automatica. En la página oficial se puede encontrar la guia de instalación y el listado de paquetes disponibles.

Para la descarga de las extensiones necesarias hay que bajarse y descomprimir este archivo en tu servidor http://pear.php.net/get/SOAP-0.9.4.tgz.

Conseguir un clave

Una vez ya tenemos instalado el módulo SOAP, el siguiente paso es descargar el developer’s kit de Google Web API para obtener nuestra clave de uso. Esta clave te permite realizar mil consultas al dia gratis.Visita Google Web APIs (http://www.google.es/apis/) y sigue las instrucciones.

Descomprime el archivo obtenido y ponlo en un lugar adecuado de tu cuenta FTP. Este contiene ejemplo de accesos al servicio con la plataforma .NET y Java, pero la mayoría de la documentación es la que utiliza estos servicios de Google mediante scripts PHP.

Decodificando el archivo WSDL

En el directorio del developer’s kit encontrarás un archivo llamado GoogleSearch.wsdl, que puedes abrir con cualquier editor de texto o navegador que soporte XML. Este archivo define exactamente que servicios podemos utilizar por medio de SOAP.
Sin embargo tambien podemos ver esta información con este pequeño trozo de código PHP.

<?php

require_once ‘SOAP/Client.php’;
$wsdl = new SOAP_WSDL(‘GoogleSearch.wsdl’);
header(‘Content-Type: text/plain’);
echo $wsdl->generateProxyCode();

?>

Situa este archivo editado y con extensión .php en algún lugar del servidor con acceso a GoogleSearch.wsdl. Si todo a ido bien podrás ver la salida del archivo, el resultado parsea el WSDL y lo convierte en funciones PHP.

Este es el resultado si todo ha funcionado:

class WebService_GoogleSearchService_GoogleSearchPort extends SOAP_Client
{
function WebService_GoogleSearchService_GoogleSearchPort($path = ‘http://api.google.com/search/beta2′)
{
$this->SOAP_Client($path, 0);
}
function &doGetCachedPage($key, $url)
{
$result = $this->call(‘doGetCachedPage’,
$v = array(‘key’ => $key, ‘url’ => $url),
array(‘namespace’ => ‘urn:GoogleSearch’,
’soapaction’ => ‘urn:GoogleSearchAction’,
’style’ => ‘rpc’,
‘use’ => ‘encoded’));
return $result;
}
function &doSpellingSuggestion($key, $phrase)
{
$result = $this->call(‘doSpellingSuggestion’,
$v = array(‘key’ => $key, ‘phrase’ => $phrase),
array(‘namespace’ => ‘urn:GoogleSearch’,
’soapaction’ => ‘urn:GoogleSearchAction’,
’style’ => ‘rpc’,
‘use’ => ‘encoded’));
return $result;
}
function &doGoogleSearch($key, $q, $start, $maxResults, $filter, $restrict, $safeSearch, $lr, $ie, $oe)
{
$result = $this->call(‘doGoogleSearch’,
$v = array(‘key’ => $key, ‘q’ => $q, ’start’ => $start, ‘maxResults’ => $maxResults, ‘filter’ => $filter, ‘restrict’ => $restrict, ’safeSearch’ => $safeSearch, ‘lr’ => $lr, ‘ie’ => $ie, ‘oe’ => $oe),
array(‘namespace’ => ‘urn:GoogleSearch’,
’soapaction’ => ‘urn:GoogleSearchAction’,
’style’ => ‘rpc’,
‘use’ => ‘encoded’));
return $result;
}
}

Posibles errores

Recapitulemos los pasos por si os da algún tipo de error, en primer lugar asegurate de que la versión de PHP es la correcta 4.3.0 o superior, si no es así instalaló cómo explicabamos anteriormente, ahora descarga el paquete de extensiones disponible en http://pear.php.net/get/SOAP-0.9.4.tgz, descomprime el zip y colocalo en una carpeta de tu server por ejemplo “pruebas/SOAP”, ahora descarga el developers kit de Google, busca el archivo GoogleSearch.wsdl y subeló a “pruebas”, con tu editor Web crea un archivo con el código citado en el punto anterior y colocalo tambien dentro del directorio “pruebas”, si aún sigue sin funcionar comprueba las rutas relativas y en caso necesarios conviertelas en rutas absolutas.

Corrector ortográfico con Google

Por poco que hayas usado Google habrás visto alguna vez el famoso “quiso decir ‘xxx’”, esta línea aparece cuando Google interpreta que has tenido un error de tipo tipográfico.
Gracias a este servicio de Google podemos añadir esta opción a nuestras aplicaciones PHP, el código necesario es el siguiente.

<?php

require_once ‘SOAP/Client.php’;
$key = ‘Introduce tu clave de uso de la API aquí’;
$wsdl = new SOAP_WSDL(‘GoogleSearch.wsdl’);
$googleProxy = $wsdl->getProxy();
echo $googleProxy->doSpellingSuggestion($key, ‘porgramacion’);
?>

Cómo puedes obserar en la cadena pasada hay un error de tipo tipográfico “porgramacion” aqui puedes ver el resultado de este pequeño script.

¿Muy simple verdad?, la prímera línea de código es trivial y las siguientes son lo suficientemente descriptivas cómo para animarnos a seguir “jugando” con este servicio, hay que tener en cuenta de que se permite 1000 consultas por día/clave, realmente interesante este servicio y altamente recomendado su uso aunque unicamente sea por curiosidad.

Puedes observar las características más avanzadas de este servicio en páginas de Google como esta: http://www.google.com/webhp?complete=1&hl=en.

Otras opciones

Cómo hemos podido ver es fácil el uso de este servicio de Google y de igual manera podríamos utilizar cualquiera de los citados anteriormente en la ejecucion del parser de GoogleSearch.wsdl:

&doGoogleSearch
&doSpellingSuggestion
&doGetCachedPage

http://devzone.zend.com/node/view/id/689#Heading3 – Php SOAP extension (devzone.zend.com)
http://www.google.com/apis/reference.html – Google SOAP Search API Reference
http://wiki.cc/php/Soap_client – Php-Wiki (Soap)
http://www.phphacks.com/content/view/27/33/ – Google Webservices with PHP
http://pear.php.net/get/SOAP-0.9.4.tgz – Descarga de extensiones SOAP
http://pear.php.net/ – PEAR (Php)
http://www.google.es/apis/ – Descarga del developer’s kit

6 Respuestas a Google Webservices API

Avatar

Anónimo

16 de Agosto de 2006 a las 7:42 pm

http://www.google.com/webhp?complete=1&hl=en

Mirar que aplicacion más curiosa, a medida que vas escribiendo en tiempo real van apareciendo el total de resultado de busquedas…

Avatar

Anónimo

17 de Agosto de 2006 a las 11:10 am

el “quiso decir” de Google es una pequeña estupenda IA

Avatar

Kelly

29 de Enero de 2008 a las 9:08 pm

click here which012525.info/1144.html watch here tennis catfight u tube iffany iamond rocco tennis initiation which012525.info/1144.html which012525.info/1144.html amataur tennis visit it which012525.info/1144.html [url=http://which012525.info/1144.html]which012525.info/1144.html[/url] amataur tennis which012525.info/1144.html watch here click here visit it iffany iamond rocco tennis initiation which012525.info/1144.html tennis catfight u tube which012525.info/1144.html
which012525.info/1322.html michelle thorne gaping gaping pusssy visit it click here which012525.info/1322.html which012525.info/1322.html enter here amazing ty gaping thumbs which012525.info/1322.html [url=http://which012525.info/1322.html]which012525.info/1322.html[/url] which012525.info/1322.html amazing ty gaping thumbs gaping pusssy which012525.info/1322.html which012525.info/1322.html enter here michelle thorne gaping click here visit it
try this scat voyeour free video which012525.info/1455.html fatbody sex free vedio pussy torents free enter here search here which012525.info/1455.html which012525.info/1455.html search here [url=http://which012525.info/1455.html]search here[/url] which012525.info/1455.html enter here search here fatbody sex free vedio which012525.info/1455.html which012525.info/1455.html scat voyeour free video pussy torents free try this
which012525.info/1334.html which012525.info/1334.html visit it nude girly lolitas nymphets naturism which012525.info/1334.html try this kiddy girly child sex porno push here girly flicks com push here [url=http://which012525.info/1334.html]push here[/url] kiddy girly child sex porno girly flicks com which012525.info/1334.html which012525.info/1334.html push here try this which012525.info/1334.html visit it nude girly lolitas nymphets naturism
which012525.info/384.html look here pre teen nune models visit it which012525.info/384.html swxy teen models which012525.info/384.html push it nylon pree teen models which012525.info/384.html [url=http://which012525.info/384.html]which012525.info/384.html[/url] pre teen nune models swxy teen models visit it which012525.info/384.html which012525.info/384.html nylon pree teen models which012525.info/384.html push it look here
which012525.info/1255.html which012525.info/1255.html which012525.info/1255.html push it sexal hardcore try this www hardcore pornos for free de search here gallery archive hardcore jpg sexal hardcore [url=http://which012525.info/1255.html]sexal hardcore[/url] which012525.info/1255.html www hardcore pornos for free de search here try this gallery archive hardcore jpg which012525.info/1255.html sexal hardcore which012525.info/1255.html push it
which012525.info/73.html ww indian celebrity nude pics com search here turkey star nude celebrity com come here bengai incest celebrity nude pics free which012525.info/73.html look here which012525.info/73.html look here [url=http://which012525.info/73.html]look here[/url] ww indian celebrity nude pics com come here which012525.info/73.html look here bengai incest celebrity nude pics free turkey star nude celebrity com search here which012525.info/73.html which012525.info/73.html
come here which012525.info/150.html visit it which012525.info/150.html teenage porns tity push here big tity girls com grils tity dance which012525.info/150.html which012525.info/150.html [url=http://which012525.info/150.html]which012525.info/150.html[/url] teenage porns tity which012525.info/150.html which012525.info/150.html which012525.info/150.html visit it grils tity dance come here big tity girls com push here
which012525.info/860.html danish girl gets fucked bt a fuck machine which012525.info/860.html dog fuck girl 3gp try this fuck asian girl vigina which012525.info/860.html enter here look here try this [url=http://which012525.info/860.html]try this[/url] look here enter here fuck asian girl vigina dog fuck girl 3gp which012525.info/860.html which012525.info/860.html try this danish girl gets fucked bt a fuck machine which012525.info/860.html
which012525.info/1173.html pictures of underage teens getting fucked which012525.info/1173.html teens being fucked come here push here which012525.info/1173.html teens getting fucked my old farts push it which012525.info/1173.html [url=http://which012525.info/1173.html]which012525.info/1173.html[/url] which012525.info/1173.html which012525.info/1173.html teens getting fucked my old farts teens being fucked push here push it pictures of underage teens getting fucked which012525.info/1173.html come here
search here which012525.info/608.html look here the jim power s babysitter com www winx club power shows com which012525.info/608.html which012525.info/608.html xxx pusi came power try this try this [url=http://which012525.info/608.html]try this[/url] which012525.info/608.html try this the jim power s babysitter com look here which012525.info/608.html which012525.info/608.html www winx club power shows com search here xxx pusi came power
click here which012525.info/1093.html insane cock insertion trailers which012525.info/1093.html watch here push it interracial porn movies insane big cook which012525.info/1093.html insane cock brothas ussykat which012525.info/1093.html [url=http://which012525.info/1093.html]which012525.info/1093.html[/url] click here watch here which012525.info/1093.html insane cock insertion trailers insane cock brothas ussykat which012525.info/1093.html push it which012525.info/1093.html interracial porn movies insane big cook
which012525.info/798.html which012525.info/798.html come here child hardsex twelve years old which012525.info/798.html watch here hardsex moive hardsex japon click here watch here [url=http://which012525.info/798.html]watch here[/url] which012525.info/798.html child hardsex twelve years old hardsex moive watch here come here which012525.info/798.html click here which012525.info/798.html hardsex japon
try this video fart in her face naked which012525.info/580.html push here which012525.info/580.html tia carrera sex video clip naked watch here free preview wwe divas fully naked video which012525.info/580.html free preview wwe divas fully naked video [url=http://which012525.info/580.html]free preview wwe divas fully naked video[/url] watch here video fart in her face naked tia carrera sex video clip naked which012525.info/580.html which012525.info/580.html push here free preview wwe divas fully naked video which012525.info/580.html try this
click here push here which012525.info/1467.html which012525.info/1467.html speis gurls gurls geting it clips which012525.info/1467.html chuby gurls porno movies try this speis gurls [url=http://which012525.info/1467.html]speis gurls[/url] which012525.info/1467.html which012525.info/1467.html push here chuby gurls porno movies gurls geting it clips click here speis gurls try this which012525.info/1467.html
look here search here which012525.info/1298.html which012525.info/1298.html stephanie chambers babecast babestation stephanie chambers naked push it which012525.info/1298.html nikole chambers tranny search here [url=http://which012525.info/1298.html]search here[/url] nikole chambers tranny search here look here which012525.info/1298.html push it which012525.info/1298.html babestation stephanie chambers naked which012525.info/1298.html stephanie chambers babecast
visit it dog sexy grils full sexy lesbines sexy grils asien sexy grils which012525.info/1064.html which012525.info/1064.html which012525.info/1064.html come here click here which012525.info/1064.html [url=http://which012525.info/1064.html]which012525.info/1064.html[/url] asien sexy grils which012525.info/1064.html which012525.info/1064.html click here lesbines sexy grils visit it dog sexy grils full sexy come here which012525.info/1064.html
sexy free hotest girl photo woman clip which012525.info/574.html sexy indian aunties photo which012525.info/574.html enter here which012525.info/574.html visit it manisha koirala sexy hot wallpapers photo gallery push it sexy free hotest girl photo woman clip [url=http://which012525.info/574.html]sexy free hotest girl photo woman clip[/url] push it which012525.info/574.html which012525.info/574.html visit it enter here sexy indian aunties photo manisha koirala sexy hot wallpapers photo gallery sexy free hotest girl photo woman clip which012525.info/574.html
devon pierce pics teen usa which012525.info/1434.html which012525.info/1434.html devon s first anal flyupload file porn portal rapidshare devon jenna jameson try this which012525.info/1434.html push here search here which012525.info/1434.html [url=http://which012525.info/1434.html]which012525.info/1434.html[/url] devon pierce pics teen usa search here devon s first anal flyupload file push here porn portal rapidshare devon jenna jameson which012525.info/1434.html try this which012525.info/1434.html which012525.info/1434.html
which012525.info/944.html which012525.info/944.html search here visit it which012525.info/944.html pig cock fuck loli push it fuck smal waman cock african 9 inch cock fuck clips visit it [url=http://which012525.info/944.html]visit it[/url] search here which012525.info/944.html pig cock fuck loli visit it african 9 inch cock fuck clips which012525.info/944.html which012525.info/944.html fuck smal waman cock push it

Dejar un comentario

Patrocinadores

¿Interesado en patrocinar TuFunción?

Suscripción

Primera División