What API are you using? If using Java API, instead of using the
FeedURLFactory,you can build the URL object by yourself and specify the
client-id as part of the URL.

For example, let's say you have a subaccount with id 12345. In order to
insert an item,
you shoud call for this account, you should:
service.insert(new URL("http://www.google.com/base/feeds/12345/items";),
yourEntry);

For updates:
service.insert(new URL("
http://www.google.com/base/feeds/12345/items/1254453345334534), yourEntry);

For deletes:
service.delete(new URL("
http://www.google.com/base/feeds/12345/items/1254453345334534));

Alex



On Mon, Oct 19, 2009 at 8:42 PM, Igor Soshkin
<[email protected]>wrote:

>
> I am having problems submitting feeds through the Google Client API
> with a Multi Google Base Account. It works perfect on a non-multi
> account but with a multi account it doesn't work.
>
> From what I understand in order to submit a feed with  Multi account
> you need to specify the Client ID in the URL which normally you would
> not with Google Client API on a regular account.
>
> However Google Client APIs are hiding the URLs, I don't know what URL
> it uses, and I believe they don't allow to submit different ClientID
> through APIs
>
> Can anyone confirm this?
>
>
>
> >
>


-- 
Alex Dovlecel, Google Switzerland GmbH
Company Identifikationsnummer: CH-020.4.028.116-1

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