Hi,

I have been trying to use the sandbox using API v201101 for a few days
now but cannot succeed. I have read the documentation and it all
sounds very simple but I keep getting error messages.

I am using the following configuration in the web.config

<AdWordsApi>

    <add key="UserAgent" value="Test"/>
    <add key="Email" value="XXX"/>
    <add key="Password" value="XXX"/>

    <add key="DeveloperToken" value="XXX++gbp"/>
    <add key="ClientCustomerId" value=""/>

    <add key="AdWordsApi.Server" value="https://adwords-
sandbox.google.com"/>
</AdWordsApi>



As I have read on numerous pages on the web, I have been trying to set
up the initial sandbox account using the following code.



AdWordsUser user = new AdWordsUser();

ServicedAccountService servicedAccountService =
(ServicedAccountService)user.GetService(AdWordsService.v201101.ServicedAccountService);

ServicedAccountSelector selector = new ServicedAccountSelector();
selector.serviceTypes = new ServiceType[] { ServiceType.UI_AND_API,
ServiceType.API_ONLY, ServiceType.UNKNOWN };
selector.enablePaging = false;

ServicedAccountGraph graph = servicedAccountService.get(selector);
// Iterate through graph.accounts to get info



The code above (or any other code I run)  throws error
AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED although the
customer ID shouldn't be needed at the stage. If this means that it's
already been setup, how do I retrieve the customer ID?

Please let me know what I am doing wrong!

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

Reply via email to