Re: ADD_OPERATION_NOT_PERMITTED when using sample code v201109

2012-02-09 Thread Neil Kirk
Hi,

Thanks.

I have made some changes and am now trying to do the same thing using my 
personal gmail account:
email=@gmail.com
password=
clientCustomerId=0
userAgent=skeniver
developerToken=@gmail.com++GBP
alternateUrl=https://adwords-sandbox.google.com

and am still getting the same problem:

http://schemas.xmlsoap.org/soap/envelope/";>
  
https://adwords.google.com/api/adwords/cm/v201109";>
  0004b8965bcc6a380a0c50023a11
  CampaignService
  mutate
  1
  310
  1

  
  

  soap:Server
  [OperationAccessDenied.ADD_OPERATION_NOT_PERMITTED @ 
operations[0]]
  
https://adwords.google.com/api/adwords/cm/v201109";>
  [OperationAccessDenied.ADD_OPERATION_NOT_PERMITTED @ 
operations[0]]
  
ApiException
  http://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="OperationAccessDenied">
operations[0]


OperationAccessDenied.ADD_OPERATION_NOT_PERMITTED
OperationAccessDenied
ADD_OPERATION_NOT_PERMITTED
  

  

  


Again, using the get_campaigns.pl example, it seems to run OK, but returns 
nothing; and I need to add campaigns so that I can eventually set ad 
parameters (this is the sole function on my script). My sandbox seems to 
have been cleared, so I need to create new campaigns, ad groups and 
keywords to make sure it all works OK with the new client library...

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


Re: updating from Cross Client Report Download (ReportUtils::RunAsyncReport) to ReportUtils::DownloadReport

2012-02-09 Thread iateadonut
This no longer works and I'm getting a
QuotaCheckError.INVALID_TOKEN_HEADER error.

I understand this has something to do with the developerToken, but my
auth.ini file looks like this:

email = "**@gmail.com"
password = "**"
userAgent = "Test App"
developerToken = "*"

So I thought that the developer token was assigned to $user in the
script at:
  $user = new AdWordsUser();  //by default here
$user->GetAuthToken();

and then passed here:
ReportUtils::DownloadReport($reportDefinition, $path, $user,
$options);


I even tried things like $user->setDeveloperToken($token) in the
script, just to try.  (This did not give me an error, incidentally,
but, then I'm not sure how to display errors in $user objects.)


Anyway, This doesn't work.  Can you give me a clue how this is
supposed to work?



On Dec 16 2011, 5:57 pm, iateadonut  wrote:
> OK,
>
> changed:
>   $user = new AdWordsUser();
>
> to:
>   $user = new AdWordsUser();
>                 $user->GetAuthToken();
>
> and i was able to run it three times without a captcha, so that seemed
> to do it... not to mention it runs faster now.
>
> thank you all for your help, Kevin, Anash, Eric
>
> on a side note, debugging was a lot easier with CrossClients.  if you
> have a single report to download, then you can just check the latest
> date in the mysql table you import it into and know that the whole
> process went fine.
>
> now you have to check for all of your clients, but if one of the
> reports is empty, then it's harder to know if you're missing just a
> little bit of the data or there was no data in a report, etc.
>
> On Dec 16, 2:18 pm, Kevin Winter  wrote:
>
>
>
>
>
>
>
> > Hi,
> >   In the PHP library, the tokens are generated in a lazy fashion, i.e.
> > right before they are needed.  If you don't cause the AuthToken to get
> > generated BEFORE the fork, then each forked process will generate its own,
> > leading to CAPTCHA challenged.  You can call GetAuthToken() 
> > (http://code.google.com/p/google-api-adwords-php/source/browse/trunk/s...)
> > on the AdWordsUser which forces creation.  Do this prior to the fork and
> > each process will have a complete copy of the AdWordsUser object, AuthToken
> > and all, which can then be used to make requests without fear of CAPTCHA
> > challenges.
>
> > - Kevin Winter
> > AdWords API Team
>
> > On Friday, December 16, 2011 1:42:57 PM UTC-5,iateadonutwrote:
>
> > > I'm misunderstanding:
>
> > > I do this command only once:
> > > $user = new AdWordsUser();
>
> > > and then I loop through my customerId's like this:
> > > $user->SetClientId($customerId);
>
> > > I thought only 'new AdWordsUser()' would generate a new AuthToken?

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


Re: Authentication Issues When Getting Started with Python Client (v201109 / ver. 15.2.0)

2012-02-09 Thread Aaron Levin
Hi Danial,

I just wanted to give you an update. Your advice worked and I am now able 
to successfully work with the Sandbox! Now on to more difficult tasks :)

Thanks so much!!

Best,

Aaron Levin

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


Re: Adwords API token pending approval for over 1 month

2012-02-09 Thread Mike Levin
I work for 360i, an agency representing many major Google clients. I use 
the AdWords API in internal product development, and have had the "Pending 
Approval" status for months. It is starting to effect my ability to do my 
job. 

What does it take to get approval? 

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


Re: API Token approval in the last 4-5 month

2012-02-09 Thread Evgeniy Bogdanov
Hi Andreas.

At least Peter does. :)

http://groups.google.com/group/adwords-api/browse_thread/thread/70f3cf53c05f6176

Did you tried to ping Adwords Aproval Team by e-mail?

Regards,
Evgeniy.

On 9 фев, 17:40, "adwo...@seonative.de"  wrote:
> Hello,
>
> is here anybody how had a successfull api approval in the last 4-5
> month?
>
> Thank you in advance.
>
> Andreas

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


Re: sample AddCampaignTargetingCriteria.java doesn't work

2012-02-09 Thread nachomac
This is the code that fires that error message:

CampaignCriterionServiceInterface campaignCriterionService =

user.getService(AdWordsService.V201109.CAMPAIGN_CRITERION_SERVICE);
List operations2 = new
ArrayList();
Platform mobile = new Platform();
mobile.setId(3L);
NegativeCampaignCriterion negativeCampaignCriterion = new
NegativeCampaignCriterion();
negativeCampaignCriterion.setCampaignId(campaignId);
negativeCampaignCriterion.setCriterion(mobile);
// Create operations.
CampaignCriterionOperation oper_neg = new
CampaignCriterionOperation();
oper_neg.setOperand(negativeCampaignCriterion);
oper_neg.setOperator(Operator.ADD);
operations2.add(oper_neg);


Thanks

On 9 feb, 21:06, nachomac  wrote:
> Hello, I tried using NegativeCampaignCriterion excluding Platform
> Mobile, but I still get the following error:
>
> [CampaignCriterionError.CANNOT_EXCLUDE_CRITERIA_TYPE @
> operations[0].operand.criterion; trigger:'PLATFORM']
>
> What am I missing here?
>
> On 9 feb, 17:17, mm  wrote:
>
>
>
>
>
>
>
> > Yeah, there's no way that example is going to work. When the campaign
> > is created, adwords adds all 3 platform criteria to it. In order to
> > get the desired result in that example, the desktop platform should be
> > removed, rather than adding the mobile and tablet platforms. Slightly
> > more discussion 
> > here:http://groups.google.com/group/adwords-api/browse_thread/thread/af7e4...
>
> > HTH -
> > mm
>
> > On Feb 8, 9:11 am, nachomac  wrote:
>
> > > Basically I want to target just PCs and Tablets, but I'm unable to do
> > > it.
>
> > > On 8 feb, 13:18, nachomac  wrote:
>
> > > > Hello, I'm trying this 
> > > > example:http://code.google.com/p/google-api-adwords-java/source/browse/trunk/...
> > > > just changing the campaign_id and user. It sets the geographical
> > > > criterion, but not the platforms. After running the program, the
> > > > platforms for the campaign are still 'All', not mobile and tablets
> > > > like it says it does. What's wrong?
> > > > Thanks

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


Re: sample AddCampaignTargetingCriteria.java doesn't work

2012-02-09 Thread nachomac
Hello, I tried using NegativeCampaignCriterion excluding Platform
Mobile, but I still get the following error:

[CampaignCriterionError.CANNOT_EXCLUDE_CRITERIA_TYPE @
operations[0].operand.criterion; trigger:'PLATFORM']

What am I missing here?


On 9 feb, 17:17, mm  wrote:
> Yeah, there's no way that example is going to work. When the campaign
> is created, adwords adds all 3 platform criteria to it. In order to
> get the desired result in that example, the desktop platform should be
> removed, rather than adding the mobile and tablet platforms. Slightly
> more discussion 
> here:http://groups.google.com/group/adwords-api/browse_thread/thread/af7e4...
>
> HTH -
> mm
>
> On Feb 8, 9:11 am, nachomac  wrote:
>
>
>
>
>
>
>
> > Basically I want to target just PCs and Tablets, but I'm unable to do
> > it.
>
> > On 8 feb, 13:18, nachomac  wrote:
>
> > > Hello, I'm trying this 
> > > example:http://code.google.com/p/google-api-adwords-java/source/browse/trunk/...
> > > just changing the campaign_id and user. It sets the geographical
> > > criterion, but not the platforms. After running the program, the
> > > platforms for the campaign are still 'All', not mobile and tablets
> > > like it says it does. What's wrong?
> > > Thanks

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


Re: Sandbox Add campaign not working with non-mcc customer id

2012-02-09 Thread Francisco Godoy
Thanks Evgeniy, I will give this a try

  Thanks Again

Francisco

On Thu, Feb 9, 2012 at 2:10 AM, Evgeniy Bogdanov  wrote:

> Hi Francisco.
>
> Sandbox have own Customer Ids.
> You need to initialize your Sandbox using this
>
> http://code.google.com/intl/en/apis/adwords/docs/sandbox.html#getting-started
> After that you can execute example to get Customers Id in your
> sandbox.
>
> If you will use those Ids with your script all should work.
>
> Regards,
> Evgeniy.
>
> On 9 фев, 11:56, Francisco  wrote:
> > Hi,
> >
> >I am new to the adwords api and am testing the samples scripts for
> > version v201109. I have everything set up to run in the sandbox and
> > already created an AdWords account which I use the customer id to pass
> > in the header. Now once I run the example I get the following error
> >
> > adspygoogle.adwords.AdWordsErrors.AdWordsAuthenticationError:
> > AuthenticationError.CustomerNotFound @; trigger:'10digit account id '
> > Service[CampaignService.mutate]
> >
> > where the 10 digit account id is my customer id in the adwords front
> > end.
> >
> >   If I remove my normal Id and substitute it with the customer id =
> > '1234567890' (which is the one shown as an example in a comment  in
> > the file AdWordsClient.py)
> >
> >   Then I get the error:
> >
> >  adspygoogle.adwords.AdWordsErrors.AdWordsAuthenticationError:
> > [AuthorizationError.USER_PERMISSION_DENIED @ ]
> >
> >  Is it possible to add campaigns in the sandbox? If so how should I
> > set up my header?
> >
> >   Thanks
>
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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
>

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


Re: Ad Params Invalid Insertion Text Error on '$160+'

2012-02-09 Thread Eric Koleda
Hi,

I see.  I'll talk to team and see if we can extend the validation to allow 
it, but unfortunately it won't change in the near term.

Best,
- Eric

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


Re: Issue with AdHoc Reports Getting Truncated

2012-02-09 Thread Eric Koleda
Hi ADM,

Thanks for passing along the report XML.  It looks like there is an extra 
closing brace ">" at the end of the content, which is causing the error.  I 
wasn't able to replicate the problem using an identical report on my own 
account using raw SOAP, so I believe the problem lies in how the .NET 
client library is downloading the data.  I suggest you open a bug on the 
client library's issue tracker to see if the problem lies there:

http://code.google.com/p/google-api-adwords-dotnet/issues/list

Best,
- Eric

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


Re: CustomerSyncService: always getting INVALID_DATE_RANGE using latest client libraries

2012-02-09 Thread Eric Koleda
Hi Brian,

The cause of the error is incorrect namespacing for the DateTimeRange 
object.  The min and max elements should be in the cm namespace, as the 
DateTimeRange object is in that namespace.  The docs reflect this:

http://code.google.com/apis/adwords/docs/reference/latest/CustomerSyncService.CustomerSyncSelector.html

I believe the client library should be handling these namespaces 
automatically, so I would advise you to open a bug on the client library's 
issue tracker:

http://code.google.com/p/google-api-adwords-dotnet/issues/list

Best,
- Eric Koleda, AdWords API Team

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


Re: Negative keywords questions

2012-02-09 Thread Soundman
Very helpful, thanks.:)

On Feb 9, 2:37 pm, jstedman  wrote:
> If you add a negative keyword to a campaign, it will affect the entire
> campaign. If you add a negative keyword to an AdGroup it will only
> affect that AdGroup and not every AdGroup in the campaign. This gives
> you control over how your negative criteria are scoped.
>
> Finding what negative keywords you want to specify is not something
> that can be automated. With the loss of organic referrer parameters on
> visitors it has become more of a guess and test operation where you
> pretty much just have to think about what a good negative keyword
> would be.
>
> The classic example is if you do window washing on hirises, you want a
> negative keyword on Microsoft, Windows XP, Windows Vista, Windows 7
> because you probably have a broad or phrase match Windows keyword
> somewhere in your campaign but you are not targeting these high volume
> search terms.
>
> "Also is there a quicker way to make all the negative words exact
> match
> instead of having to click each one individually to change? "
>
> This sounds like you are talking about the AdWords web interface, this
> forum is actually for the AdWords programming API so you may find the
> answer you are looking for in the general AdWords forum.

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


v201109 Ad Performance Report

2012-02-09 Thread Dmitriy
Hello.

There are statistic for placements in v13 Ad Performance Report. Does 
impressions by content network presents in v201109 report?

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


Re: sample AddCampaignTargetingCriteria.java doesn't work

2012-02-09 Thread mm
Yeah, there's no way that example is going to work. When the campaign
is created, adwords adds all 3 platform criteria to it. In order to
get the desired result in that example, the desktop platform should be
removed, rather than adding the mobile and tablet platforms. Slightly
more discussion here:
http://groups.google.com/group/adwords-api/browse_thread/thread/af7e433dad63cfb4/1a8f5a901fe2ef86?lnk=gst&q=campaign+platform#1a8f5a901fe2ef86

HTH -
mm

On Feb 8, 9:11 am, nachomac  wrote:
> Basically I want to target just PCs and Tablets, but I'm unable to do
> it.
>
> On 8 feb, 13:18, nachomac  wrote:
>
>
>
>
>
>
>
> > Hello, I'm trying this 
> > example:http://code.google.com/p/google-api-adwords-java/source/browse/trunk/...
> > just changing the campaign_id and user. It sets the geographical
> > criterion, but not the platforms. After running the program, the
> > platforms for the campaign are still 'All', not mobile and tablets
> > like it says it does. What's wrong?
> > Thanks

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


Authentication Error: GOOGLE_ACCOUNT_COOKIE_INVALID

2012-02-09 Thread Amit Vimal


Hi Team,

The current implementation is, we fetch the AuthToken using following 
function
string authToken = new Google.Api.Ads.Common.Lib.AuthToken(config, 
AdWordsSoapClient.SERVICE_NAME, config.Email, config.Password).GetToken();
 
We have not cached the authToken value in our application and every request 
uses the above code to get the AuthToken.
 
We received this error Authentication Error: GOOGLE_ACCOUNT_COOKIE_INVALID 
while collection data from the engine today.Regards,

Amit A Vimal

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


Re: 201109 keyword report - getting display data

2012-02-09 Thread Ed-
Hey,

I still need help with this one... actually asked account manager to add 
some kw on one of the affected campaigns, but it doesn't show up on reports 
(yet). So I'm in trouble, reports with no display clicks aint going to work 
:S

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


API Token approval in the last 4-5 month

2012-02-09 Thread adwo...@seonative.de
Hello,

is here anybody how had a successfull api approval in the last 4-5
month?

Thank you in advance.

Andreas

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


Re: Negative keywords questions

2012-02-09 Thread jstedman
If you add a negative keyword to a campaign, it will affect the entire
campaign. If you add a negative keyword to an AdGroup it will only
affect that AdGroup and not every AdGroup in the campaign. This gives
you control over how your negative criteria are scoped.

Finding what negative keywords you want to specify is not something
that can be automated. With the loss of organic referrer parameters on
visitors it has become more of a guess and test operation where you
pretty much just have to think about what a good negative keyword
would be.

The classic example is if you do window washing on hirises, you want a
negative keyword on Microsoft, Windows XP, Windows Vista, Windows 7
because you probably have a broad or phrase match Windows keyword
somewhere in your campaign but you are not targeting these high volume
search terms.

"Also is there a quicker way to make all the negative words exact
match
instead of having to click each one individually to change? "

This sounds like you are talking about the AdWords web interface, this
forum is actually for the AdWords programming API so you may find the
answer you are looking for in the general AdWords forum.

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


Re: Authentication Issues When Getting Started with Python Client (v201109 / ver. 15.2.0)

2012-02-09 Thread Aaron Levin
Hi Danial,

Thanks for getting back to me. I will try this later today and report back 
with (hopefully) my success!

Thanks again!

Best,

Aaron Levin

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


Re: Cannot select image.mediaId and image.name using AdGroupAdService

2012-02-09 Thread Eric Koleda
Hi Frank,

When updating an ad we recommend you use the base type "Ad", as it only 
required the ID.

http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201109/BasicOperations/PauseAd.php#53

Best,
- Eric

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


Negative keywords questions

2012-02-09 Thread Soundman
In the space to add negative keywords there is an option to add them
in either "Ad group level" or "Campaign level" do i need to add all
the negative keywords to both of these?

Also how do i find ALL the negative words I'm being searched for?

Also is there a quicker way to make all the negative words exact match
instead of having to click each one individually to change?

Thanks

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


Re: CampaignStats removed clicks and cost after a while

2012-02-09 Thread Alexander Alex
Thank you, this exactly info I'm looking for.

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


MutateJobService limits

2012-02-09 Thread Ovid
Hi all,

I'm reading http://code.google.com/apis/adwords/docs/guides/bulkjobs.html
and have a couple of questions and comments:

1. Near the top of that document is the "Supported Operations"
section. URLs to various supported operationons are 404s:

http://code.google.com/apis/adwds/docs/guides/reference/latest/AdGroupCriterionService.AdGroupCriterionOperation.html

I can reference that at:

http://code.google.com/intl/en/apis/adwords/docs/reference/latest/AdGroupCriterionService.AdGroupCriterionOperation.html

2. The BulkMutateRequest section says this:

"No more than 10,000 operations are allowed per BulkMutateRequest"

Does this also apply to the MutateJobService?

3. The BulkMutateRequest section says this:

"Incomplete jobs remain indefinitely in the job queue and count
against the maximum of 10 jobs per customer."

But near the top of the page is states "There is no limit to the
number of jobs you can submit."

Does this mean I can submit unlimited jobs but that only 10 will run
in parallel and the rest will be queued?

Cheers,
Ovid

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


Re: Sandbox Add campaign not working with non-mcc customer id

2012-02-09 Thread Evgeniy Bogdanov
Hi Francisco.

Sandbox have own Customer Ids.
You need to initialize your Sandbox using this
http://code.google.com/intl/en/apis/adwords/docs/sandbox.html#getting-started
After that you can execute example to get Customers Id in your
sandbox.

If you will use those Ids with your script all should work.

Regards,
Evgeniy.

On 9 фев, 11:56, Francisco  wrote:
> Hi,
>
>    I am new to the adwords api and am testing the samples scripts for
> version v201109. I have everything set up to run in the sandbox and
> already created an AdWords account which I use the customer id to pass
> in the header. Now once I run the example I get the following error
>
> adspygoogle.adwords.AdWordsErrors.AdWordsAuthenticationError:
> AuthenticationError.CustomerNotFound @; trigger:'10digit account id '
> Service[CampaignService.mutate]
>
> where the 10 digit account id is my customer id in the adwords front
> end.
>
>   If I remove my normal Id and substitute it with the customer id =
> '1234567890' (which is the one shown as an example in a comment  in
> the file AdWordsClient.py)
>
>   Then I get the error:
>
>  adspygoogle.adwords.AdWordsErrors.AdWordsAuthenticationError:
> [AuthorizationError.USER_PERMISSION_DENIED @ ]
>
>  Is it possible to add campaigns in the sandbox? If so how should I
> set up my header?
>
>   Thanks

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


Re: Authentication Issues When Getting Started with Python Client (v201109 / ver. 15.2.0)

2012-02-09 Thread Danial Klimkin
Hi Aaron,


Try running the following example:

  
http://code.google.com/p/google-api-ads-python/source/browse/trunk/examples/adspygoogle/adwords/v201109/account_management/get_account_hierarchy.py

It should give you a list of Advertiser accounts. Pick one of them and use 
it's clientCustomerId in your configuration file. You do not need 
get_client_customer_id as it was designed for migrations from old versions 
only.


-Danial, AdWords API Team.

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


Re: Adwords API does not work for a specific customer id for specific ip adress

2012-02-09 Thread Danial Klimkin
Hello shmely,


I suggest checking the network settings for your service provider. It is 
possible there is a proxy in the setup that damages the report or some 
other limitation.

It is not possible to investigate it on our side unfortunately.


-Danial, AdWords API Team.

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


Re: API Token Taking Too Long

2012-02-09 Thread Danial Klimkin
Hello kb,


The token review process is handled by a separate team so we can't help 
here much.

Please send me CID over email so I could at least find out the current 
status.


-Danial, AdWords API Team.

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


Re: CampaignStats removed clicks and cost after a while

2012-02-09 Thread Danial Klimkin
Hello Alexander,


This is the expected behavior. All clicks are reviewed by analytic systems 
internally to detect multiple clicks, click frauds etc. If any such event 
found the clicks amount could get reduced. Please note the clicks could 
only be removed so you will be charged less.

The data is usually stabilized within two days and completely frozen on the 
1st day of the next month.


-Danial, AdWords API Team.

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


Re: THIRD_PARTY_REDIRECT_AD not returrning in an AdPerformance report

2012-02-09 Thread Danial Klimkin
Hello All,


This issue should be resolved now.


-Danial, AdWords API Team.

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


Re: AdHoc report error

2012-02-09 Thread Danial Klimkin
Hello,


The error 400 means there is a problem with your report definition. You 
need to check the response body for more details.

Please refer to the following post for more details on error codes:

  http://adwordsapi.blogspot.com/2011/11/discover-v201109-adhoc-reports.html


-Danial, AdWords API Team.

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


Re: Continous failure to create Report request with CONCURRENT MODIFICATION error

2012-02-09 Thread Danial Klimkin
Hello Sudarshan,


It appears you are using the v201101 ReportDefinitionService. Please 
correct me if I got it wrong.

Please note this service is scheduled for sunset on 29 Feb 2012. You should 
migrate to AdHoc reporting as soon as possible. AdHoc reporting is much 
faster and I expect no such errors for it in your configuration.

See: 
http://googleadsdeveloper.blogspot.com/2012/01/30-days-left-to-migrate-to-adwords-api.html


-Danial, AdWords API Team.

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


Re: Accounts in sandbox don't seem to have campaigns setup.

2012-02-09 Thread Danial Klimkin
Hello Peter,


You should create them via the API. Please also check out our Sandbox 
Viewer demo application you may find helpful:

  http://code.google.com/apis/adwords/docs/demo-apps.html#sav


-Danial, AdWords API Team.

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


Re: MutateJobService with mix operations

2012-02-09 Thread Danial Klimkin
Hello George,


Currently it is not possible to create campaign and ad group under it in 
the same job. We have this logged as a feature request already.

You are correct the best way to do it is to use 3-4 jobs. Also, please note 
for future we recommend to group jobs per campaign and ad group. Throwing a 
job that creates or updates one ad in each of 1000 ad groups is not 
recommended, please use separate jobs for it.

As you are not limited in the number of jobs this shouldn't cause issues.


-Danial, AdWords API Team.

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


Sandbox Add campaign not working with non-mcc customer id

2012-02-09 Thread Francisco
Hi,

   I am new to the adwords api and am testing the samples scripts for
version v201109. I have everything set up to run in the sandbox and
already created an AdWords account which I use the customer id to pass
in the header. Now once I run the example I get the following error

adspygoogle.adwords.AdWordsErrors.AdWordsAuthenticationError:
AuthenticationError.CustomerNotFound @; trigger:'10digit account id '
Service[CampaignService.mutate]

where the 10 digit account id is my customer id in the adwords front
end.

  If I remove my normal Id and substitute it with the customer id =
'1234567890' (which is the one shown as an example in a comment  in
the file AdWordsClient.py)

  Then I get the error:

 adspygoogle.adwords.AdWordsErrors.AdWordsAuthenticationError:
[AuthorizationError.USER_PERMISSION_DENIED @ ]

 Is it possible to add campaigns in the sandbox? If so how should I
set up my header?

  Thanks

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