Hi there.
I'm a newbie in this.
This is my code:
Dim entry As New GBaseEntry
With entry
.Title.Text = "Rui Oliveira's test"
.Content.Content = "Rui Oliveira's test"
.GBaseAttributes.ItemType = "housing"
.GBaseAttributes.PriceType = "for rent"
.GBaseAttributes.Quantity = 1
Dim euros As FloatUnit = New FloatUnit(750.0, "usd")
.GBaseAttributes.Price = euros
.GBaseAttributes.ExpirationDate = Date.Now.AddYears(2)
.GBaseAttributes.Location = "Porto, Portugal, 4445"
End With
Dim service As New GBaseService("Google-Tutorial-1.0",
Parametros.DeveloperKey)
service.setUserCredentials(Parametros.UserName,
Parametros.PassWord)
Dim myEntry As GBaseEntry = service.Insert
(GBaseUriFactory.Default.ItemsFeedUri, entry)
This is based in the examples I found and this is error is happening:
Execution of request failed: http://www.google.com/base/feeds/items
What am I doing wrong?
Thanks in advance.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---