API Google : faire une boucle de recherche de 2 mots-clés

WRInaute discret
Salut,

Tu fais appelle 2 fois à l'api:

Code:
// on cree un objet pour utiliser la Google API
$google = new GoogleApiSearch;
$google2 = new GoogleApiSearch;

 $result = $google->doGoogleSearch($cle, $q, $start);
 $result = $google2->doGoogleSearch($cle, $q2, $start);
 
WRInaute discret
chmouc a dit:
Salut,

Tu fais appelle 2 fois à l'api:

Code:
// on cree un objet pour utiliser la Google API
$google = new GoogleApiSearch;
$google2 = new GoogleApiSearch;

 $result = $google->doGoogleSearch($cle, $q, $start);
 $result = $google2->doGoogleSearch($cle, $q2, $start);

Cela doit etre possible avec une boucle
 
Nouveau WRInaute
Moi aussi ça plante avec google lorsque je boucle pour faire une recherche de plusieurs mots clé.

Mon application fait aussi des recherches sur msn et yahoo et la ça fonctionne... :cry:
 
WRInaute discret
Pour cette page j'utilise l'API google.
Ce script effectue une boucle pour 2 (ou plus) mots clefs et cela marche sans problème.

J'apelle l'API à chaque nouvelle recherche et il n'y a aucun problème.
Il faut que tu apelle l'API dans la boucle, ca donne un truc comme ca en gros :
Code:
for ($i=0; $i<2; $i++){
  $cle = 'xxxx';
  $q = 'Recherche';
  $google = new GoogleApiSearch;
  $start = "1";
  $result = $google->doGoogleSearch($cle, $q, $start);
etcc..
 
Discussions similaires
Haut