Hello, I am trying to start doing some tests for a .net console App and when I try to add my first campaign I have been getting this error but it has been impossible to find the cause of it; I am using the .net library that google provides for free(google-api-adwords-dotnet); problem is that as soon as I try to insert a campaign I am getting an error that reads something like ADD_OPERATION_NOT_PERMITTED;
Within my app I have created a class where in the constructor I first get and instance for each service that I am going to use; I want to use the SandBox mode; here is the class constructor and the configuration from my console app. Sub New() 'Uncomment the following line if you are testing any feature/ improvemenet AdWordUser.UseSandbox() 'Get the Campaign related Service objects. CampaignServiceObj = AdWordUser.GetService(AdWordsService.v201003.CampaignService) AdGroupServiceObj = AdWordUser.GetService(AdWordsService.v201003.AdGroupService) AdGroupAdServiceObj = AdWordUser.GetService(AdWordsService.v201003.AdGroupAdService) AdGroupCriterionServiceObj = AdWordUser.GetService(AdWordsService.v201003.AdGroupCriterionService) AdParamServiceObj = AdWordUser.GetService(AdWordsService.v201003.AdParamService) End Sub <AdWordsApi> <!-- Fill the header values. --> <add key="CompanyName" value="ENTER_YOUR_COMPANY_NAME_HERE"/> <add key="Email" value="ramon....@gmail.com"/> <add key="Password" value="...."/> <add key="ClientEmail" value=""/> <add key="DeveloperToken" value="ENTER_YOUR_DEVELOPER_TOKEN_HERE"/ > <!-- Application token is now optional and will be ignored by the server.--> <!-- <add key="ApplicationToken" value="ENTER_YOUR_APPLICATION_TOKEN_HERE"/> --> <!-- Uncomment this key and comment ClientEmail if you want to specify customer id instead of customer email. --> <!-- <add key="ClientCustomerId" value="ENTER_YOUR_CLIENT_CUSTOMER_ID_HERE"/> --> <!-- Uncomment this if you want to reuse an authToken multiple times. --> <!--<add key="AuthToken" value="ENTER_YOUR_AUTH_TOKEN_HERE"/> --> <!-- more keys--> </AdWordsApi> Any idea with this problem? I have not setup my billing info yet, problem is that I want to use my personal email temporarily and only in developer mode; then as soon as I have all in place I will switch to the company account. I am not providing a developer token; Do I need one? How can I get one if it is necessary? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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