Hi,
I am trying to insert item on google base using .net api. But every
time i had received
"<errors>
<error type="request" reason="Cannot find the customer to insert the
entry."/>
</errors>" Error.

Following is my code that i am using for insert a value. I had get a
live data successfully but for insertion not working.

My Code :

 GBaseEntry entry = new GBaseEntry();
            entry.Title.Text = "My House";
            entry.Content.Content = "The best house of the area.";
            entry.GBaseAttributes.ItemType = "Product";
            entry.GBaseAttributes.Location = "1900 Snow Cone Avenue,
North Pole";
            FloatUnit fProductPrice = new FloatUnit(4.99f, "pounds");
            entry.GBaseAttributes.Price = fProductPrice;
            entry.Links.Add(new AtomLink("http://www.test.com/
image=12454"));
            GBaseEntry myEntry = service.Insert
(GBaseUriFactory.Default.ItemsFeedUri, entry);

Thanx,
umesh soni

--~--~---------~--~----~------------~-------~--~----~
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