Here is some sample code I am am running:
GoogleBaseService googleBaseService = new
GoogleBaseService("ValoreBooks.com", developerKey);
googleBaseService.setUserCredentials(username, password);
URL itemFeedUrl = FeedURLFactory.getDefault().getItemsFeedURL();
GoogleBaseQuery query = new GoogleBaseQuery(itemFeedUrl);
query.setGoogleBaseQuery(isbn + " [condition: " +
googleBaseCondition.getGoogleBaseToken() + "]");
GoogleBaseFeed feed = googleBaseService.query(query);
Iterator entryIter = feed.getEntries().iterator();
while (entryIter.hasNext()) {
GoogleBaseEntry entry = (GoogleBaseEntry) entryIter.next();
}
The code is failing on :
GoogleBaseFeed feed = googleBaseService.query(query);
It is giving a service not found, it also does the same for putting
add / modify / deleting entries as well.
On Sep 17, 3:05 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> I keep getting this error when using the API, we never got it in the
> past but it started in the last few weeks. None of our code has
> changed. Is there anyone that can help me with this?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---