AdWords API Re: Exact Match - All Languages - All Countries - AvgSearchVolume

2009-03-04 Thread AdWords API Advisor

Hello Joe,

 As a matter of policy, I'm afraid that I can't comment on whether
specific functionality will or will not be added to a future release
of the AdWords API.

Cheers,
-Jeff Posnick, Adwords API Team


On Mar 4, 5:19 pm, Joeyw  wrote:
> Thanks for that - and I should have read the whole post properly!
>
> Do you have any plans to retrieve the phrase and exact search volumes
> for the future?
>
> Cheers
>
> Joe
>
> On Mar 4, 8:50 pm, AdWords API Advisor 
> wrote:
>
> > Hello Joe,
>
> >  The scenario you describe is exactly what I was describing in my blog
> > post, and to quote from the last paragraph:
>
> > "The search volumes in the results returned from the API should
> > roughly correspond to what you'd see with the Broad setting for match
> > type in the web tool, but retrieving search volumes for Phrase or
> > Exact match types is not possible."
>
> > So to reiterate, you cannot retrieve search volumes that correspond to
> > the Exact match type via the AdWords API.
>
> > Cheers,
> > -Jeff Posnick, AdWords API Team
>
> > On Mar 4, 3:19 pm, Joeyw  wrote:
>
> > > Hi Jeff,
>
> > > I am very much after what the orginal poster asked for and I got quite
> > > excited when I read your post:
> > > 'Keyword Match Type and the 
> > > KeywordToolService'http://adwordsapi.blogspot.com/2009/01/keyword-match-type-and.html
>
> > > It appeared to solve my problem, but so far it hasn't.
>
> > > I would like the returned search volumes from the API to be for exact
> > > match type and not broad. I have used the following code for a UK
> > > query:
>
> > > # Create seed keyword structure.
> > > $seed_keyword =
> > >   'false' .
> > >   'google api' .
> > >   'Exact';
> > > $use_synonyms = 'true';
>
> > > # Get keyword variations.
> > > $request_xml =
> > >   '' .
> > >   '' . $seed_keyword . '' .
> > >   $use_synonyms .
> > >   'en' .
> > >   'GB' .
> > >   '';
>
> > > You can see I have specified the type to be exact and query the UK.
>
> > > The search volume returned for 'google api' is 33100 - checking the
> > > web keyword tool reveals this is the number for the broad match type,
> > > the exact is actually 1,600.
>
> > > Could you explain why this is the case and if I am doing anything
> > > wrong?
>
> > > Thanks
>
> > > Joe
>
> > > On Jan 5, 3:59 pm, AdWords API Advisor 
> > > wrote:
>
> > > > Hello,
>
> > > >  When I use the web tool to perform the actions you describe, I get
> > > > the following result:
>
> > > > Keywords related to term(s) entered - sorted by relevance
> > > > google api  1 - 3  $1.79  550,000  450,000
>
> > > > I'm not sure where you're getting the 27,100 number from, but 450,000
> > > > is the average search volume I'm getting.
>
> > > >  When I make the following call to getKeywordVariations(), leaving out
> > > > the countries and languages options so that all are selected:
>
> > > > 
> > > >   
> > > >     false
> > > >     Google Api
> > > >     Broad
> > > >   
> > > >   false
> > > > 
>
> > > > I get a response that contains this result, along with many other
> > > > results:
>
> > > > 
> > > >   google api
> > > >   
> > > >   4
> > > >   45
> > > >   55
> > > > 
>
> > > > That's the same data as I'm seeing in the web tool. While there can
> > > > sometimes be differences in the estimates returned from the web tool
> > > > and the getKeywordVariations() call, there doesn't seem to be in this
> > > > case.
>
> > > > Cheers,
> > > > -Jeff Posnick, AdWords API Team
>
> > > > On Dec 31 2008, 2:50 am, SEO  wrote:
>
> > > > > While we've been using AdWords tools manually, we are trying to get
> > > > > the AdWords API code to work, we have not been able to get a API code
> > > > > that will return back what we need and currently do manually.
>
> > > > > Currently the manual process is:
>
> > > > > Goto:https://adwords.google.com/select/KeywordToolExternal
>
> > > > > Select:
> > > > > All Countries and Territories
>
> > > > > Select:  (all countries in the list)
> > > > > English
> > > > > ...
> > > > > ...
> > > > > ...
> > > > > Vietnamese
>
> > > > > Enter Keyword:
> > > > > Google Api
>
> > > > > Uncheck:
> > > > > [] Use synonyms
>
> > > > > Click:
> > > > > Filter my results
>
> > > > > Check:
> > > > > [] Don't show ideas for new keywords. I only want to see data about
> > > > > the keywords I entered.
>
> > > > > Click:
> > > > > Get keyword ideas
>
> > > > > Drop Down Select:
> > > > > Match Type: Exact
>
> > > > > ~~ Output ~~~
>
> > > > > Keyword: google api
> > > > > Approx Avg Search Volume: 27,100
>
> > > > > Now how can we get the Google AdWords API tool to do the above?  I
> > > > > hate having to pay $30/hour for people to sit in front of a computer
> > > > > and cut and paste when we have great API tools from Google, just can't
> > > > > get the those great API tools too work...
>
> > > > > Can anyone help?
>
>
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Goo

AdWords API Re: Exact Match - All Languages - All Countries - AvgSearchVolume

2009-03-04 Thread Joeyw

Thanks for that - and I should have read the whole post properly!

Do you have any plans to retrieve the phrase and exact search volumes
for the future?

Cheers

Joe

On Mar 4, 8:50 pm, AdWords API Advisor 
wrote:
> Hello Joe,
>
>  The scenario you describe is exactly what I was describing in my blog
> post, and to quote from the last paragraph:
>
> "The search volumes in the results returned from the API should
> roughly correspond to what you'd see with the Broad setting for match
> type in the web tool, but retrieving search volumes for Phrase or
> Exact match types is not possible."
>
> So to reiterate, you cannot retrieve search volumes that correspond to
> the Exact match type via the AdWords API.
>
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Mar 4, 3:19 pm, Joeyw  wrote:
>
> > Hi Jeff,
>
> > I am very much after what the orginal poster asked for and I got quite
> > excited when I read your post:
> > 'Keyword Match Type and the 
> > KeywordToolService'http://adwordsapi.blogspot.com/2009/01/keyword-match-type-and.html
>
> > It appeared to solve my problem, but so far it hasn't.
>
> > I would like the returned search volumes from the API to be for exact
> > match type and not broad. I have used the following code for a UK
> > query:
>
> > # Create seed keyword structure.
> > $seed_keyword =
> >   'false' .
> >   'google api' .
> >   'Exact';
> > $use_synonyms = 'true';
>
> > # Get keyword variations.
> > $request_xml =
> >   '' .
> >   '' . $seed_keyword . '' .
> >   $use_synonyms .
> >   'en' .
> >   'GB' .
> >   '';
>
> > You can see I have specified the type to be exact and query the UK.
>
> > The search volume returned for 'google api' is 33100 - checking the
> > web keyword tool reveals this is the number for the broad match type,
> > the exact is actually 1,600.
>
> > Could you explain why this is the case and if I am doing anything
> > wrong?
>
> > Thanks
>
> > Joe
>
> > On Jan 5, 3:59 pm, AdWords API Advisor 
> > wrote:
>
> > > Hello,
>
> > >  When I use the web tool to perform the actions you describe, I get
> > > the following result:
>
> > > Keywords related to term(s) entered - sorted by relevance
> > > google api  1 - 3  $1.79  550,000  450,000
>
> > > I'm not sure where you're getting the 27,100 number from, but 450,000
> > > is the average search volume I'm getting.
>
> > >  When I make the following call to getKeywordVariations(), leaving out
> > > the countries and languages options so that all are selected:
>
> > > 
> > >   
> > >     false
> > >     Google Api
> > >     Broad
> > >   
> > >   false
> > > 
>
> > > I get a response that contains this result, along with many other
> > > results:
>
> > > 
> > >   google api
> > >   
> > >   4
> > >   45
> > >   55
> > > 
>
> > > That's the same data as I'm seeing in the web tool. While there can
> > > sometimes be differences in the estimates returned from the web tool
> > > and the getKeywordVariations() call, there doesn't seem to be in this
> > > case.
>
> > > Cheers,
> > > -Jeff Posnick, AdWords API Team
>
> > > On Dec 31 2008, 2:50 am, SEO  wrote:
>
> > > > While we've been using AdWords tools manually, we are trying to get
> > > > the AdWords API code to work, we have not been able to get a API code
> > > > that will return back what we need and currently do manually.
>
> > > > Currently the manual process is:
>
> > > > Goto:https://adwords.google.com/select/KeywordToolExternal
>
> > > > Select:
> > > > All Countries and Territories
>
> > > > Select:  (all countries in the list)
> > > > English
> > > > ...
> > > > ...
> > > > ...
> > > > Vietnamese
>
> > > > Enter Keyword:
> > > > Google Api
>
> > > > Uncheck:
> > > > [] Use synonyms
>
> > > > Click:
> > > > Filter my results
>
> > > > Check:
> > > > [] Don't show ideas for new keywords. I only want to see data about
> > > > the keywords I entered.
>
> > > > Click:
> > > > Get keyword ideas
>
> > > > Drop Down Select:
> > > > Match Type: Exact
>
> > > > ~~ Output ~~~
>
> > > > Keyword: google api
> > > > Approx Avg Search Volume: 27,100
>
> > > > Now how can we get the Google AdWords API tool to do the above?  I
> > > > hate having to pay $30/hour for people to sit in front of a computer
> > > > and cut and paste when we have great API tools from Google, just can't
> > > > get the those great API tools too work...
>
> > > > Can anyone help?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



AdWords API Re: Axis2 1.4.1 wsdl2java

2009-03-04 Thread AdWords API Advisor

Hello Jyothi,

 I do believe that the maintainer of the Java client library will be
updating to Axis 1.4 in a future release.

 In the meantime, I believe that you can make use of the (oddly named)
adwords-api-x.x.x-loner.jar library that ships with the client
library, which isn't packaged with dependencies on specific external
libraries, and then use that in conjunction with Axis 1.4 (and a
number of other third-party .jars which you'd have to provide). If you
have issues doing this we can loop in the maintainer of the Java
client library to clear things up.

Cheers,
-Jeff Posnick, AdWords API Team


On Mar 3, 4:15 am, Jyothirmayee  wrote:
> The prebuilt Client library has definitely been useful, until I ran
> into a notorious problem of axis jar conflicts. Google Adwords stubs
> have been generated with Axis 1.2 while the latest stable version is
> 1.4. Most other applications suggest Axis 1.4 for the environment
> including the Yahoo Search Marketing API. So I have not been able to
> build a cross platform application which can work with Google &
> Yahoo.
>
> I don't see a reason while Adwords shouldn't upgrade its dependency
> jars making life so much easy for all of us.
>
> Jyothi
>
> On Jan 23, 9:13 pm, AdWords API Advisor 
> wrote:
>
> > Hello Eric,
>
> >  This isn't an answer to your question, as I don't personally have
> > experience using that version ofAxis, but I wanted to make sure that
> > you were aware of the AdWords API Java Client Library:
>
> >  http://code.google.com/p/google-api-adwords-java/
>
> > If you use that, you won't have to go through the effort of generating
> > the classes from the WSDLs yourself. It also adds some other niceties
> > that you might appreciate, such as an easy way of enabling logging,
> > accounting for the number of API units used, and a unified way of
> > providing credentials across all the different AdWords API services.
>
> > Cheers,
> > -Jeff Posnick, AdWords API Team
>
> > On Jan 22, 7:43 pm, Eric  wrote:
>
> > > Has anybody had success using Axis21.4.1 to generate java code from
> > > the WSDLs?  If so, what command line parameters did you use?
>
> > > I've generated client side code using both ADB and XMLBeans but get
> > > code that won't compile.  Specifically, wsdl2java seems to have
> > > problems with ApiError, ApiException, and Fault.  I'm generating code
> > > using -g and -u  since the WSDLs share common types.
>
> > > Thanks.
>
> > > -Eric
>
>
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



AdWords API Re: Exact Match - All Languages - All Countries - AvgSearchVolume

2009-03-04 Thread AdWords API Advisor

Hello Joe,

 The scenario you describe is exactly what I was describing in my blog
post, and to quote from the last paragraph:

"The search volumes in the results returned from the API should
roughly correspond to what you'd see with the Broad setting for match
type in the web tool, but retrieving search volumes for Phrase or
Exact match types is not possible."

So to reiterate, you cannot retrieve search volumes that correspond to
the Exact match type via the AdWords API.

Cheers,
-Jeff Posnick, AdWords API Team


On Mar 4, 3:19 pm, Joeyw  wrote:
> Hi Jeff,
>
> I am very much after what the orginal poster asked for and I got quite
> excited when I read your post:
> 'Keyword Match Type and the 
> KeywordToolService'http://adwordsapi.blogspot.com/2009/01/keyword-match-type-and.html
>
> It appeared to solve my problem, but so far it hasn't.
>
> I would like the returned search volumes from the API to be for exact
> match type and not broad. I have used the following code for a UK
> query:
>
> # Create seed keyword structure.
> $seed_keyword =
>   'false' .
>   'google api' .
>   'Exact';
> $use_synonyms = 'true';
>
> # Get keyword variations.
> $request_xml =
>   '' .
>   '' . $seed_keyword . '' .
>   $use_synonyms .
>   'en' .
>   'GB' .
>   '';
>
> You can see I have specified the type to be exact and query the UK.
>
> The search volume returned for 'google api' is 33100 - checking the
> web keyword tool reveals this is the number for the broad match type,
> the exact is actually 1,600.
>
> Could you explain why this is the case and if I am doing anything
> wrong?
>
> Thanks
>
> Joe
>
> On Jan 5, 3:59 pm, AdWords API Advisor 
> wrote:
>
> > Hello,
>
> >  When I use the web tool to perform the actions you describe, I get
> > the following result:
>
> > Keywords related to term(s) entered - sorted by relevance
> > google api  1 - 3  $1.79  550,000  450,000
>
> > I'm not sure where you're getting the 27,100 number from, but 450,000
> > is the average search volume I'm getting.
>
> >  When I make the following call to getKeywordVariations(), leaving out
> > the countries and languages options so that all are selected:
>
> > 
> >   
> >     false
> >     Google Api
> >     Broad
> >   
> >   false
> > 
>
> > I get a response that contains this result, along with many other
> > results:
>
> > 
> >   google api
> >   
> >   4
> >   45
> >   55
> > 
>
> > That's the same data as I'm seeing in the web tool. While there can
> > sometimes be differences in the estimates returned from the web tool
> > and the getKeywordVariations() call, there doesn't seem to be in this
> > case.
>
> > Cheers,
> > -Jeff Posnick, AdWords API Team
>
> > On Dec 31 2008, 2:50 am, SEO  wrote:
>
> > > While we've been using AdWords tools manually, we are trying to get
> > > the AdWords API code to work, we have not been able to get a API code
> > > that will return back what we need and currently do manually.
>
> > > Currently the manual process is:
>
> > > Goto:https://adwords.google.com/select/KeywordToolExternal
>
> > > Select:
> > > All Countries and Territories
>
> > > Select:  (all countries in the list)
> > > English
> > > ...
> > > ...
> > > ...
> > > Vietnamese
>
> > > Enter Keyword:
> > > Google Api
>
> > > Uncheck:
> > > [] Use synonyms
>
> > > Click:
> > > Filter my results
>
> > > Check:
> > > [] Don't show ideas for new keywords. I only want to see data about
> > > the keywords I entered.
>
> > > Click:
> > > Get keyword ideas
>
> > > Drop Down Select:
> > > Match Type: Exact
>
> > > ~~ Output ~~~
>
> > > Keyword: google api
> > > Approx Avg Search Volume: 27,100
>
> > > Now how can we get the Google AdWords API tool to do the above?  I
> > > hate having to pay $30/hour for people to sit in front of a computer
> > > and cut and paste when we have great API tools from Google, just can't
> > > get the those great API tools too work...
>
> > > Can anyone help?
>
>
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-04 Thread AdWords API Advisor

Hello Xavier,

 This is a bug that the engineering team is going to have to resolve.

 I'll update this thread with more information when I have it, but
they are actively looking into the issue.

Cheers,
-Jeff Posnick, AdWords API Team


On Mar 4, 2:14 pm, Xavier  wrote:
> Thanks a lot Jeff, I was able to reproduce the problem with the
> campaign that didn't had the problem, I created a new adgroup with
> only site placement, and this reproduced the error.
>
> I can remove those ad groups from the campaigns we own, but for other
> customers, I think we can't touch those ad groups, will the
> engineering team fix this issue or there is other workaround?
>
> Regards,
>
> Xavier
>
> On Mar 4, 1:53 pm, AdWords API Advisor 
> wrote:
>
> > Hello,
>
> >  So this appears to be a new variation on an old issue. The common
> > thread here seems to be that there is an ad group in the same campaign
> > that contains only placement criteria (no keywords) and that ad group
> > only has its siteMaxCpc bid set (no keywordMaxCpc). The presence of
> > this ad group seems to prevent other ad groups in the same campaign
> > from having their keywordContentMaxCpc bids set.
>
> >  This is not the correct behavior, obviously, and I've brought the
> > issue to the attention of the engineering team. Apologies that it took
> > so much time to diagnose, but it is rather unexpected.
>
> > Cheers,
> > -Jeff Posnick
>
> > On Mar 2, 4:01 pm, AdWords API Advisor 
> > wrote:
>
> > > Hello,
>
> > >  Hmmm... that is an old issue, and now that you mention it I do
> > > remember it cropping up last year. I'm going to dig a little and see
> > > if this appears to be the same cause. If so, it would explain why
> > > Xavier is seeing inconsistent behavior across different accounts.
>
> > > Cheers,
> > > -Jeff Posnick, AdWords API Team
>
> > > On Feb 27, 2:04 pm, bryanjj  wrote:
>
> > > > Jeff,
>
> > > > We also saw this error yesterday for the first time in over a year.
>
> > > > Before this was caused by a data issue on Google servers (support
> > > > #246301284):
> > > > "The corrupt ad groups were due to a problem on our end; they were
> > > > basically incomplete ad groups, incorrectly created due to a bug which
> > > > should be fixed by now, so you shouldn't be getting any more of them.
> > > > However, if you come across any more, just let us know at this email
> > > > address, and we'll take care of them. Sergio"
>
> > > > Would you mind checking the status of these two group ids to see if
> > > > they are valid?
> > > > 1166091575
> > > > 1172279705
>
> > > > Thanks,
> > > > Bryan Jacobs
> > > > Marin Software
>
> > > > On Feb 27, 10:11 am, Xavier  wrote:
>
> > > > > I set it zero and thecontentbid gets set to Auto when I see it
> > > > > through the web, if I'm not wrong Auto is not the same as using the
> > > > > search bid (it's an average ofkeywordbids).
>
> > > > > I solve this by editing thebidsentering them manually through the
> > > > > web, but the idea is to use the API to turn this into something
> > > > > automatic.
>
> > > > > The thing that drives me crazy is that with other customer account, I
> > > > > can have campaigns and adgroups with the exact same settings and the
> > > > > API call works (I mean setting thecontentbid when search is off), so
> > > > > I'm not sure if there is something that I'm missing or if it's a real
> > > > > API bug.
>
> > > > > Regards,
>
> > > > > Xavier
>
> > > > > On Feb 27, 3:07 pm, AdWords API Advisor 
> > > > > wrote:
>
> > > > > > Hello Xavier,
>
> > > > > >  If you don't have a value set for keywordContentMaxCpc (or you set 
> > > > > > it
> > > > > > to 0) then the value of keywordMaxCpc will be used forcontentnetwork
> > > > > > CPCbidsinstead. So setting keywordMaxCpc will be enough to determine
> > > > > > yourcontentbid in that scenario.
>
> > > > > > Cheers,
> > > > > > -Jeff Posnick, AdWords API Team
>
>
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



AdWords API Re: Exact Match - All Languages - All Countries - AvgSearchVolume

2009-03-04 Thread Joeyw

Hi Jeff,

I am very much after what the orginal poster asked for and I got quite
excited when I read your post:
'Keyword Match Type and the KeywordToolService'
http://adwordsapi.blogspot.com/2009/01/keyword-match-type-and.html

It appeared to solve my problem, but so far it hasn't.

I would like the returned search volumes from the API to be for exact
match type and not broad. I have used the following code for a UK
query:

# Create seed keyword structure.
$seed_keyword =
  'false' .
  'google api' .
  'Exact';
$use_synonyms = 'true';

# Get keyword variations.
$request_xml =
  '' .
  '' . $seed_keyword . '' .
  $use_synonyms .
  'en' .
  'GB' .
  '';

You can see I have specified the type to be exact and query the UK.

The search volume returned for 'google api' is 33100 - checking the
web keyword tool reveals this is the number for the broad match type,
the exact is actually 1,600.

Could you explain why this is the case and if I am doing anything
wrong?

Thanks

Joe





On Jan 5, 3:59 pm, AdWords API Advisor 
wrote:
> Hello,
>
>  When I use the web tool to perform the actions you describe, I get
> the following result:
>
> Keywords related to term(s) entered - sorted by relevance
> google api  1 - 3  $1.79  550,000  450,000
>
> I'm not sure where you're getting the 27,100 number from, but 450,000
> is the average search volume I'm getting.
>
>  When I make the following call to getKeywordVariations(), leaving out
> the countries and languages options so that all are selected:
>
> 
>   
>     false
>     Google Api
>     Broad
>   
>   false
> 
>
> I get a response that contains this result, along with many other
> results:
>
> 
>   google api
>   
>   4
>   45
>   55
> 
>
> That's the same data as I'm seeing in the web tool. While there can
> sometimes be differences in the estimates returned from the web tool
> and the getKeywordVariations() call, there doesn't seem to be in this
> case.
>
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Dec 31 2008, 2:50 am, SEO  wrote:
>
> > While we've been using AdWords tools manually, we are trying to get
> > the AdWords API code to work, we have not been able to get a API code
> > that will return back what we need and currently do manually.
>
> > Currently the manual process is:
>
> > Goto:https://adwords.google.com/select/KeywordToolExternal
>
> > Select:
> > All Countries and Territories
>
> > Select:  (all countries in the list)
> > English
> > ...
> > ...
> > ...
> > Vietnamese
>
> > Enter Keyword:
> > Google Api
>
> > Uncheck:
> > [] Use synonyms
>
> > Click:
> > Filter my results
>
> > Check:
> > [] Don't show ideas for new keywords. I only want to see data about
> > the keywords I entered.
>
> > Click:
> > Get keyword ideas
>
> > Drop Down Select:
> > Match Type: Exact
>
> > ~~ Output ~~~
>
> > Keyword: google api
> > Approx Avg Search Volume: 27,100
>
> > Now how can we get the Google AdWords API tool to do the above?  I
> > hate having to pay $30/hour for people to sit in front of a computer
> > and cut and paste when we have great API tools from Google, just can't
> > get the those great API tools too work...
>
> > Can anyone help?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-04 Thread Xavier

Thanks a lot Jeff, I was able to reproduce the problem with the
campaign that didn't had the problem, I created a new adgroup with
only site placement, and this reproduced the error.

I can remove those ad groups from the campaigns we own, but for other
customers, I think we can't touch those ad groups, will the
engineering team fix this issue or there is other workaround?

Regards,

Xavier

On Mar 4, 1:53 pm, AdWords API Advisor 
wrote:
> Hello,
>
>  So this appears to be a new variation on an old issue. The common
> thread here seems to be that there is an ad group in the same campaign
> that contains only placement criteria (no keywords) and that ad group
> only has its siteMaxCpc bid set (no keywordMaxCpc). The presence of
> this ad group seems to prevent other ad groups in the same campaign
> from having their keywordContentMaxCpc bids set.
>
>  This is not the correct behavior, obviously, and I've brought the
> issue to the attention of the engineering team. Apologies that it took
> so much time to diagnose, but it is rather unexpected.
>
> Cheers,
> -Jeff Posnick
>
> On Mar 2, 4:01 pm, AdWords API Advisor 
> wrote:
>
> > Hello,
>
> >  Hmmm... that is an old issue, and now that you mention it I do
> > remember it cropping up last year. I'm going to dig a little and see
> > if this appears to be the same cause. If so, it would explain why
> > Xavier is seeing inconsistent behavior across different accounts.
>
> > Cheers,
> > -Jeff Posnick, AdWords API Team
>
> > On Feb 27, 2:04 pm, bryanjj  wrote:
>
> > > Jeff,
>
> > > We also saw this error yesterday for the first time in over a year.
>
> > > Before this was caused by a data issue on Google servers (support
> > > #246301284):
> > > "The corrupt ad groups were due to a problem on our end; they were
> > > basically incomplete ad groups, incorrectly created due to a bug which
> > > should be fixed by now, so you shouldn't be getting any more of them.
> > > However, if you come across any more, just let us know at this email
> > > address, and we'll take care of them. Sergio"
>
> > > Would you mind checking the status of these two group ids to see if
> > > they are valid?
> > > 1166091575
> > > 1172279705
>
> > > Thanks,
> > > Bryan Jacobs
> > > Marin Software
>
> > > On Feb 27, 10:11 am, Xavier  wrote:
>
> > > > I set it zero and thecontentbid gets set to Auto when I see it
> > > > through the web, if I'm not wrong Auto is not the same as using the
> > > > search bid (it's an average ofkeywordbids).
>
> > > > I solve this by editing thebidsentering them manually through the
> > > > web, but the idea is to use the API to turn this into something
> > > > automatic.
>
> > > > The thing that drives me crazy is that with other customer account, I
> > > > can have campaigns and adgroups with the exact same settings and the
> > > > API call works (I mean setting thecontentbid when search is off), so
> > > > I'm not sure if there is something that I'm missing or if it's a real
> > > > API bug.
>
> > > > Regards,
>
> > > > Xavier
>
> > > > On Feb 27, 3:07 pm, AdWords API Advisor 
> > > > wrote:
>
> > > > > Hello Xavier,
>
> > > > >  If you don't have a value set for keywordContentMaxCpc (or you set it
> > > > > to 0) then the value of keywordMaxCpc will be used forcontentnetwork
> > > > > CPCbidsinstead. So setting keywordMaxCpc will be enough to determine
> > > > > yourcontentbid in that scenario.
>
> > > > > Cheers,
> > > > > -Jeff Posnick, AdWords API Team
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-04 Thread AdWords API Advisor

Hello,

 So this appears to be a new variation on an old issue. The common
thread here seems to be that there is an ad group in the same campaign
that contains only placement criteria (no keywords) and that ad group
only has its siteMaxCpc bid set (no keywordMaxCpc). The presence of
this ad group seems to prevent other ad groups in the same campaign
from having their keywordContentMaxCpc bids set.

 This is not the correct behavior, obviously, and I've brought the
issue to the attention of the engineering team. Apologies that it took
so much time to diagnose, but it is rather unexpected.

Cheers,
-Jeff Posnick


On Mar 2, 4:01 pm, AdWords API Advisor 
wrote:
> Hello,
>
>  Hmmm... that is an old issue, and now that you mention it I do
> remember it cropping up last year. I'm going to dig a little and see
> if this appears to be the same cause. If so, it would explain why
> Xavier is seeing inconsistent behavior across different accounts.
>
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Feb 27, 2:04 pm, bryanjj  wrote:
>
> > Jeff,
>
> > We also saw this error yesterday for the first time in over a year.
>
> > Before this was caused by a data issue on Google servers (support
> > #246301284):
> > "The corrupt ad groups were due to a problem on our end; they were
> > basically incomplete ad groups, incorrectly created due to a bug which
> > should be fixed by now, so you shouldn't be getting any more of them.
> > However, if you come across any more, just let us know at this email
> > address, and we'll take care of them. Sergio"
>
> > Would you mind checking the status of these two group ids to see if
> > they are valid?
> > 1166091575
> > 1172279705
>
> > Thanks,
> > Bryan Jacobs
> > Marin Software
>
> > On Feb 27, 10:11 am, Xavier  wrote:
>
> > > I set it zero and thecontentbid gets set to Auto when I see it
> > > through the web, if I'm not wrong Auto is not the same as using the
> > > search bid (it's an average ofkeywordbids).
>
> > > I solve this by editing thebidsentering them manually through the
> > > web, but the idea is to use the API to turn this into something
> > > automatic.
>
> > > The thing that drives me crazy is that with other customer account, I
> > > can have campaigns and adgroups with the exact same settings and the
> > > API call works (I mean setting thecontentbid when search is off), so
> > > I'm not sure if there is something that I'm missing or if it's a real
> > > API bug.
>
> > > Regards,
>
> > > Xavier
>
> > > On Feb 27, 3:07 pm, AdWords API Advisor 
> > > wrote:
>
> > > > Hello Xavier,
>
> > > >  If you don't have a value set for keywordContentMaxCpc (or you set it
> > > > to 0) then the value of keywordMaxCpc will be used forcontentnetwork
> > > > CPCbidsinstead. So setting keywordMaxCpc will be enough to determine
> > > > yourcontentbid in that scenario.
>
> > > > Cheers,
> > > > -Jeff Posnick, AdWords API Team
>
>
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Reminder: You must update your AdWords API code to v13

2009-03-04 Thread AdWords API Advisor

Just a friendly reminder to all AdWords API developers: if you have
not yet updated your code to use v13 of the AdWords API, please do so
immediately.

A list of changes between v12 and v13 can be found at

  http://code.google.com/apis/adwords/docs/developer/releasenotes.html

and links to updated versions of the official AdWords API client
libraries can be found at

  http://code.google.com/apis/adwords/docs/clients.html

As we previously announced in this group, we plan on leaving the v12
SOAP services running through Monday, March 9. That leaves only a few
days to upgrade, so please don't delay!

Cheers,
-Jeff Posnick, AdWords API Team
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---