1 message in com.googlegroups.google-base-data-apiGoogleBase Updates using ZendFramework
FromSent OnAttachments
apwagner21 Mar 2008 11:35 
Subject:GoogleBase Updates using ZendFramework
From:apwagner (webm@apwagner.com)
Date:03/21/2008 11:35:57 AM
List:com.googlegroups.google-base-data-api

Hi. When I first submit my items to Googlebase, through the API using ZendFramework, I didn't have alternative link set correctly. So now I've been trying to fix it. Just re-inserting seems to work about 40% of the time...which is odd. 60% of the products appear to be untouched even though they were definitely re-inserted.

So I've been trying to update the products through the API using ZendFramework and am experiencing a problem trying to update the link. The error is: "You must specify an URI to which to put." If I remove the addition of the link the entry saves just fine and shows up on Googlebase. So I know it's something to do with that.

$query = $this->service->newItemQuery(); $query->setBq('[mpn:"WE16X30"]'); $query->setOrderBy('modification_time'); $query->setSortOrder('descending'); $query->setMaxResults('25'); $feed = $this->service->getGbaseItemFeed($query);

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

Thanks in advance for any assistance.