4 messages in com.googlegroups.google-base-data-apiSnippets Isn't Giving Me a Blank Price
FromSent OnAttachments
morg...@gmail.com19 Jan 2007 18:00 
Stephane Zermatten22 Jan 2007 00:33 
Morgan Eason22 Jan 2007 09:07 
Flexer09 Feb 2007 06:48 
Subject:Snippets Isn't Giving Me a Blank Price
From:morg...@gmail.com (morg@gmail.com)
Date:01/19/2007 06:00:20 PM
List:com.googlegroups.google-base-data-api

I can't seem to get the price of an item out of the snippets feed. All the other data is valid just the price appears blank. I tried with the google sample query of digital camera and all the other data is comming back fine but if I request entry.GBaseAttributes.Price it is blank.

This code works find for getting stuff like expiration date, location, etc... just price comes back blank. I grab straight entry properties like entry.Title and it comes back just fine too.

Any one no what I am doing wrong?

Dim service As GBaseService = New GBaseService("Google-Tutorial-1.0", "ABQTHERESTOFMYKEY") Dim query As GBaseQuery = New GBaseQuery(GBaseUriFactory.Default.SnippetsFeedUri) query.GoogleBaseQuery = " [item type: products] digital camera"

Dim feed As GBaseFeed = service.Query(query)

For Each entry As GBaseEntry In feed.Entries response.write(entry.Title.Text) response.write(entry.GBaseAttributes.ExpirationDate) response.write(entry.GBaseAttributes.Price) Next

Results in: Digital Camera Battery

2/18/2007 5:32:07 AM

Thanks in advance!