Hi

I am trying to retrieve an item feed from Gbase but with multiple
searches and for some reason it works if I put one keyword and doesn't
if I put two or more.

I know the connection to the API is ok because as I said it works if
there is only one keyword in the $query string, but once I try to
seperate them with ' | ', it shows nothing.
Is there a different way to use the ' | ' with the setBQ function?

Also even within the loop when I echo " done ", that doesn't show on
the page either?

$service = new Zend_Gdata_Gbase($client);

$query = $service->newItemQuery();
$query->setBQ("youtube|video clips|youtube videos");

$feed = $service->getGbaseItemFeed($query);

foreach ($feed->entries as $entry) {

  echo $entry->title->text;
 echo "done<br/>";

}

Thanks, Sean

-- 
You received this message because you are subscribed to the Google Groups 
"Google Base Data API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-base-data-api?hl=en.

Reply via email to