Re: KeywordPerformanceReport - datatype for TotalConvValue?

2011-01-06 Thread AdWords API Advisor
Hi,

Right now, report fields that are monetary values are returned as
currency values (decimal) rather than as micros (long) by default. You
can get the micro values by sending "returnMoneyInMicros: true" as
http headers when downloading the report. See this blog post for more
details:

http://adwordsapi.blogspot.com/2010/11/change-to-currency-formatting-in-report.html

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jan 5, 4:04 am, mm  wrote:
> Hey guys -
> According to the documentation - both via getReportFields api and the
> online doc - TotalConvValue/ConversionValue in the
> KeywordPerformanceReport is a long. However, when running reports
> containing this value, a decimal value is returned. Is it safe to
> assume that this is actually a currency value (which makes more sense
> anyway)?
>
> Thanks -
> mm

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Geo location report

2011-01-06 Thread pure
Does adwords api have that function?
help

On 1月5日, 下午6时49分, pure  wrote:
> help
>
> On 1月4日, 下午1时31分, faqing wu  wrote:
>
> > hi,
> >  Does adwords api have geo location report service? I have not found
> > in ReportDefinitionService.
> >  Anyone knows about this?
>
> > Thanks,
> >   pure

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


Can i able to set my budget of Campaign

2011-01-06 Thread Smitty Isidhore
Hi

I want to manage my adword campaign through application program. I
wish to reset the budget for both daily and monthly as well as i wish
to retrieve informations such as number of clicks/day and amount spend
per day  through my application program. Can this possible? I already
have a campaign in adwords. I wish to do application program in php, i
downloaded the php client library and installed. Now im trying some
examples in v200909 sandbox. My php version is 5.3.0. When i tried
getAllCamaigns.php in examples im getting an error telling "
Fatal error: Call to undefined function curl_init() in C:\wamp\www
\aw_api_php_li
b_2.4.0\src\Google\Api\Ads\Common\Util\AuthToken.php on line 114".
curl is enabled. any suggestion to resolve this problem?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Calls taking a long, LONG time.

2011-01-06 Thread Alexander Parij
Hi ,

Try to set the page size to 100 entries.
I don't know what language library you are using,  but we used python's with 
ZSI to process the soap response. It was extremely slow when we had page 
size of let's say 1000 . I don't know what happens inside but the code is 
not that optimized 
and the processing time rises exponentially actually even 100 entires 
was a bit slow and we just changed to the older SOAPPY because it's MUCH 
faster.

Hope it helps.
Alexander Parij

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Definitive report Field source

2011-01-06 Thread Reed
Is anyone else, especially Java programmers, having problems parsing
the xmlAttributeName fields in the XML that comes back from
getReportFields?  I'm using Adobe ColdFusion, which creates Java code
and uses the Apache Xerces XML parser, and it absolutely does not like
this.  From what I've read, it looks like xmlAttributeName is a
reserved word in xml docs.  If I do a find/replace of the raw xml data
and change "xmlAttributeName" to "xyzzy" then I have absolutely no
problem parsing the document and referencing that field.
-reed

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Unable to verify sandbox.google.com certificate since jan 1 2011

2011-01-06 Thread peet4130
Thanks,

The problem turned out to be an old version of OSX and httpclient:

"Trusted CA bundle file cacert_sha1.p7s for older environment (where
you cannot use SHA512 algorithm such as an old Mac OS X) included in
httpclient 2.1.5 expires in Dec 31, 2010.  Please update to 2.1.6 if
you're on such an environment."
https://github.com/nahi/httpclient/blob/c65457ec78b6067bbf8465b1c0c639af40fe0181/README.txt

On Jan 6, 12:25 am, AdWords API Advisor 
wrote:
> Hi,
>
> This has happened in the past for some SOAP clients.  Please see this
> thread for more information:
>
>  https://groups.google.com/group/adwords-api/browse_thread/thread/ef91...
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jan 3, 3:08 pm, peet4130  wrote:
>
> > I'm having trouble verifying the sandbox.google.com certicate with
> > openssl (1.0.0c 2 Dec 2010).
>
> > $ openssl verify sandbox.google.com.cert
> > sandbox.google.com.cert: /C=US/ST=California/L=Mountain View/O=Google
> > Inc/CN=sandbox.google.com
> > error 20 at 0 depth lookup:unable to get local issuer certificate
>
> > It works fine when I change my date to december 31 2010.
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: KeywordPerformanceReport - datatype for TotalConvValue?

2011-01-06 Thread mm
Hey Anash -
I do have that header set in my request, and the other monetary values
that I requested (Cost, MaxCpc & MaxCpm) are returned as longs. Only
TotalConvValue is not.

Thanks -
mm

On Jan 6, 2:25 am, AdWords API Advisor 
wrote:
> Hi,
>
> Right now, report fields that are monetary values are returned as
> currency values (decimal) rather than as micros (long) by default. You
> can get the micro values by sending "returnMoneyInMicros: true" as
> http headers when downloading the report. See this blog post for more
> details:
>
> http://adwordsapi.blogspot.com/2010/11/change-to-currency-formatting-...
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Jan 5, 4:04 am, mm  wrote:
>
> > Hey guys -
> > According to the documentation - both via getReportFields api and the
> > online doc - TotalConvValue/ConversionValue in the
> > KeywordPerformanceReport is a long. However, when running reports
> > containing this value, a decimal value is returned. Is it safe to
> > assume that this is actually a currency value (which makes more sense
> > anyway)?
>
> > Thanks -
> > mm
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Keyword, Campaign, Adgroup, Ad Performance Reports

2011-01-06 Thread mm
Hey Kevin -
You're exactly right. If you want everything, you need to add a
Predicate to the Selector for the ReportDefinition that specifies
Impressions >= 0.

HTH -
mm

On Jan 5, 7:10 pm, Kevin  wrote:
> Hello,
> I would like to understand these reports.
> When I query any of the above reports I get a subset of the active
> keywords, campaigns, adgroups, ads from my adwords account.
>
> Am I correct in assuming that these performance reports that are
> generated via the adwords API - only return information on keywords,
> campaigns, adgroups, ads that actually had clicks or impressions?
> Anything that is missing for the date range would be considered to be
> no traffic or activity?
>
> Or is there some kind of predicate setup and selector config that I
> need to use to get "everything" in the performance reports?
>
> Thank you.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: V201008 ReportDefinition defined via the UI has a null selector

2011-01-06 Thread mm
Cool - thanks for looking into it, Eric. Will keep an eye out for the
fix.

On Jan 5, 5:03 pm, AdWords API Advisor 
wrote:
> Hi MM,
>
> At the moment some report types created in the UI are returning empty
> selectors in the API.  I'm working with the core engineering team to
> resolve it, but I don't have an estimate as to when that fixed.
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jan 3, 2:04 pm, mm  wrote:
>
> > Hey guys -
> > I was having trouble with a KeywordPerformance report that I was
> > defining via the api. I could get the data via a report defined with
> > the UI, though, so it occurred to me to retrieve that definition
> > programmatically and from it figure out what was the difference in the
> > fields or predicates between the definitions. However, when I
> > retrieved the definitions, the selector for the good report definition
> > (the one created via the UI) was null. Needless to say, this surprised
> > me. This report does, in fact, return data segmented by Conversion
> > tracking purpose and Conversion action name - which suggests that it
> > must have a Selector. And I get fully-populated reportDefinitions for
> > definitions that I have created programmatically.
>
> > Is it the expected behavior that I will only get complete report
> > definitions from the ReportDefinitionService for reports that I create
> > programmatically, or is this a bug?
>
> > Thanks -
> > mm
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: No value returned from AdGroupCriterionService mutate

2011-01-06 Thread AdWords API Advisor
Hi Joel,

The core engineering team is having a hard time finding the root cause
of the problem.  Can you try running a request against one of these
accounts with the partialFailure header set to false?  The hope is
that this will allow the underlying error to bubble up to the surface,
making it easier to debug.

Thanks,
- Eric

On Jan 4, 5:14 pm, AdWords API Advisor 
wrote:
> Hi Joel,
>
> Looking deeper, I can see that it is affecting those two account 100%
> of the time, and the rest of your accounts not at all.  The problem
> appeared temporary to me at first because you had stopped making
> requests to those certain accounts.  I'll pass this information along
> to the core engineering team to see if that helps them identify the
> issue.
>
> Best,
> - Eric
>
> On Jan 3, 9:48 am, joel  wrote:
>
>
>
>
>
>
>
> > Unfortunately this is still occurring on at least several accounts. I
> > forwarded the account ids to apiadvisor and our rep. Can you please
> > continuing researching the issue? Let me know if you need any
> > additional details.
>
> > On Dec 29 2010, 1:16 pm, AdWords API Advisor
>
> >  wrote:
> > > Hi Joel,
>
> > > Looking at the logs it seems like this was a temporary issue.  I'll
> > > follow up with the core engineering team to see if they have any
> > > insight, but let me know if you see the problem return.
>
> > > Best,
> > > - Eric Koleda, AdWords API Team
>
> > > On Dec 23, 8:49 am, joel  wrote:
>
> > > > Over the past 2 weeks at least 3 of our accounts are now experiencing
> > > > strange behavior when we attempt to add new Keywords with
> > > > AdGroupCriterionService mutate(). Whenever we make the API call, no
> > > > value is returned and no exception is thrown. A sample request Id is
> > > > e654cb6af5c384e2e2b3b2c5be607331, which had 27 operations in it.
>
> > > > The SOAP response is:
> > > >  > > > xmlns:soap="http://schemas.xmlsoap.org/soap/
> > > > envelope/">e654cb6af5c384e2e2b3b2c5be607331 > > > requestId>27751 > > > responseTime>405 > > > soap:Header> > > > soap:Envelope>
>
> > > > Other sample request Ids from this same account:
> > > > 38eebdb7603c705ec7d52db4fc0fafee
> > > > d4f20e39fd3f6fe564e408f324af8074
>
> > > > Code is:
> > > > AdGroupCriterionServiceInterface criterionSvc =
> > > > user.getService(AdWordsService.V201008.ADGROUP_CRITERION_SERVICE);
> > > > AdGroupCriterionReturnValue value =
> > > > criterionSvc.mutate(lUpdates.toArray(new
> > > > AdGroupCriterionOperation[lUpdates.size()]));
>
> > > > // When call returns, value object is null, no exception
>
> > > > I'd appreciate it if someone could research this since it seems to be
> > > > happening with increased frequency, thank you.
>
> > > > -Joel

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Keyword, Campaign, Adgroup, Ad Performance Reports

2011-01-06 Thread Ian
I was under the impression--no pun intended--that zero impression rows were 
not returned in aggregated results per 
thisdiscussion.
 I also just tested the predicate on our production account w/ no 
success. If there is a way to pull down all items in an aggregated 
resultset, it would be helpful.

-Ian

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


Message sent to adwordsadvisor email address

2011-01-06 Thread Reed
Eric - I've sent a private message to the above email address.
thanks
-reed

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Geo location report

2011-01-06 Thread AdWords API Advisor
Hi,

The Geographic Performance Report is currently only available in the
v13 version of the API:

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

This report should be available in the ReportDefinitionService next
version of the API.

Best,
- Eric Koleda, AdWords API Team

On Jan 6, 4:48 am, pure  wrote:
> Does adwords api have that function?
> help
>
> On 1月5日, 下午6时49分, pure  wrote:
>
>
>
>
>
>
>
> > help
>
> > On 1月4日, 下午1时31分, faqing wu  wrote:
>
> > > hi,
> > >  Does adwords api have geo location report service? I have not found
> > > in ReportDefinitionService.
> > >  Anyone knows about this?
>
> > > Thanks,
> > >   pure

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Traffic Estimator Service(v201008) returning improper results

2011-01-06 Thread AdWords API Advisor
Hi Sambaiah,

Can you provide an example of this happening?

Best,
- Eric Koleda, AdWords API Team

On Jan 4, 3:11 am, "external...@spurtz.com" 
wrote:
> Hi AdWords Team,
>
> Traffic Estimator Service (v201008)  returning improper results in
> production.
> Some estimator results returns zero(0) for keywords. Some of have
> contains unique values for all keywords.Sandbox account is working
> fine,it sending fake date with different values for keywords.
>
> Please  suggest me how the traffic estimator gives improper  values.
>
> Regards
> Sambaiah B
> Spurtz Application Developer
> samba.bethap...@gmail.com

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Automatic Placements Performance Report

2011-01-06 Thread AdWords API Advisor
Hi Dan,

The core engineering team is still working on the solution, and at
this time I don't have any estimates as to when it will be complete.

Best,
- Eric

On Jan 4, 4:13 am, Dan  wrote:
> Hello Eric,
>
> Any news about this fix?
>
> Thanks in advance,
> Dan
>
> On Dec 14 2010, 6:58 pm, AdWords API Advisor
>
>
>
>
>
>
>
>  wrote:
> > Hi,
>
> > The core engineers are working on this issue, but there likely won't
> > be a resolution until January at the earliest.
>
> > Best,
> > - Eric Koleda, AdWords API Team
>
> > On Dec 14, 1:41 am, sireesha sangu  wrote:
>
> > > We have seen in the forums that there is an issue with automatic 
> > > placements
> > > performance report, is it true that this report fetches managed placements
> > > performance report?
> > > Will there be any fix for this issue in a week or so?
>
> > > here is the forum 
> > > linkhttp://www.mail-archive.com/adwords-api@googlegroups.com/msg11092.html

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: When the campaign is with Budget Optimizer and trying to test it for ConvOptimizer eligibility I get RequestError.INVALID_INPUT

2011-01-06 Thread AdWords API Advisor
Hi Alex,

The cause of this error is that the campaign being operated on is not
eligible to be updated via the API.  In this case the campaign was
created as part of the Boost Ads program, and as such cannot be
manually updated.

  http://www.google.com/support/places/bin/answer.py?hl=en&answer=1040967

A new error reason will be added for this in the next version of the
API, but for existing versions the INVALID_INPUT reason is returned.

Best,
- Eric Koleda, AdWords API Team

On Jan 5, 10:41 am, Alexander Parij  wrote:
> Actually this is the shorter version of the problem with one campaign only :
>
> 
> *** Outgoing SOAP **
> 
>  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/";
> xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";
> xmlns:ZSI="http://www.zolera.com/schemas/ZSI/";
> xmlns:xsd="http://www.w3.org/2001/XMLSchema";
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
> 
> https://adwords.google.com/api/adwords/cm/v200909";>
> xx
> AwApi-Python-13.1.0|Test Client
> XX
> XXX
> true
> 
> 
>  xmlns:ns1="https://adwords.google.com/api/adwords/cm/v200909";>
> https://adwords.google.com/api/adwords/cm/v200909";>
> 
> SET
> 
> 
> CONVERSIONS
> 
> 
> 
> 
> 
> 177315046
> 
> 
> 
> 
> 
> 
> *** Incoming HTTP headers **
> 500 Internal Server Error
> Content-Type: text/xml; charset=UTF-8
> Content-Encoding: gzip
> Transfer-Encoding: chunked
> Date: Wed, 05 Jan 2011 15:38:07 GMT
> Expires: Wed, 05 Jan 2011 15:38:07 GMT
> Cache-Control: private, max-age=0
> X-Content-Type-Options: nosniff
> X-Frame-Options: SAMEORIGIN
> X-XSS-Protection: 1; mode=block
> Server: GSE
> 
> *** Incoming SOAP **
> 
>  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";> xmlns="https://adwords.google.com/api/adwords/cm/v200909";>a1c6f9e8b76e16a92f3463d1ade9c74e1  rations>5811 soap:Header>soap:Server string>[RequestError.INVALID_INPUT
> @ operations[0]] xmlns="https://adwords.google.com/api/adwords/cm/v200909";>[RequestError.INVALID_INPUT
> @
> operations[0]]ApiException nException.Type> p:Envelope>
> 
> EndTime: 2011-01-05 10:38:07

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: When the campaign is with Budget Optimizer and trying to test it for ConvOptimizer eligibility I get RequestError.INVALID_INPUT

2011-01-06 Thread AdWords API Advisor
Additionally, if you are only trying to determine if a campaign is
elligible you should use the conversionOptimizerEligibility field that
was introduced in v201008.

  
http://code.google.com/apis/adwords/docs/reference/latest/CampaignService.Campaign.html#conversionOptimizerEligibility

Best,
- Eric

On Jan 6, 5:14 pm, AdWords API Advisor 
wrote:
> Hi Alex,
>
> The cause of this error is that the campaign being operated on is not
> eligible to be updated via the API.  In this case the campaign was
> created as part of the Boost Ads program, and as such cannot be
> manually updated.
>
>  http://www.google.com/support/places/bin/answer.py?hl=en&answer=1040967
>
> A new error reason will be added for this in the next version of the
> API, but for existing versions the INVALID_INPUT reason is returned.
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jan 5, 10:41 am, Alexander Parij  wrote:
>
>
>
>
>
>
>
> > Actually this is the shorter version of the problem with one campaign only :
>
> > 
> > *** Outgoing SOAP **
> > 
> >  > xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/";
> > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";
> > xmlns:ZSI="http://www.zolera.com/schemas/ZSI/";
> > xmlns:xsd="http://www.w3.org/2001/XMLSchema";
> > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
> > 
> > https://adwords.google.com/api/adwords/cm/v200909";>
> > xx
> > AwApi-Python-13.1.0|Test Client
> > XX
> > XXX
> > true
> > 
> > 
> >  > xmlns:ns1="https://adwords.google.com/api/adwords/cm/v200909";>
> > https://adwords.google.com/api/adwords/cm/v200909";>
> > 
> > SET
> > 
> > 
> > CONVERSIONS
> > 
> > 
> > 
> > 
> > 
> > 177315046
> > 
> > 
> > 
> > 
> > 
> > 
> > *** Incoming HTTP headers **
> > 500 Internal Server Error
> > Content-Type: text/xml; charset=UTF-8
> > Content-Encoding: gzip
> > Transfer-Encoding: chunked
> > Date: Wed, 05 Jan 2011 15:38:07 GMT
> > Expires: Wed, 05 Jan 2011 15:38:07 GMT
> > Cache-Control: private, max-age=0
> > X-Content-Type-Options: nosniff
> > X-Frame-Options: SAMEORIGIN
> > X-XSS-Protection: 1; mode=block
> > Server: GSE
> > 
> > *** Incoming SOAP **
> > 
> >  > xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";> > xmlns="https://adwords.google.com/api/adwords/cm/v200909";>a1c6f9e8b76e16a92f3463d1ade9c74e1 >  
> > rations>5811 > soap:Header>soap:Server > string>[RequestError.INVALID_INPUT
> > @ operations[0]] > xmlns="https://adwords.google.com/api/adwords/cm/v200909";>[RequestError.INVALID_INPUT
> > @
> > operations[0]]ApiException > nException.Type> > p:Envelope>
> > 
> > EndTime: 2011-01-05 10:38:07

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: TargetingIdeaService not returning the seed keyword unlike Keyword Tool

2011-01-06 Thread AdWords API Advisor
Hi Jai,

That's unusual, as it seems to only be happening for Japanese and not
other languages.  I'll talk to the core engineering team about it.  If
you are just trying to get stats about known keywords it's better to
use the requestType STATS.

Best,
- Eric Koleda, AdWords API Team

On Jan 5, 8:47 am, Jai  wrote:
> Hello group members,
>
> Some more specifics. When I have Japanese as the language target and
> enter a seed keyword in English, TargetingIdeaService does not return
> the seed keyword, whereas the Keyword Tool returns the seed keyword
> for the same constraints. Why do we see this discrepancy?
>
> Thank you
> Jai
>
> On Jan 4, 5:04 pm, Jai  wrote:
>
>
>
>
>
>
>
> > Hello,
> > I am using TargetingIdeaService. The result I am getting through
> > TargetingIdeaService is the same as the Keyword Tool, however, the
> > traffic data for the seed keyword is not being returned. E.g.: If I
> > enter "Signal Processing" in the keyword tool, I get Signal Processing
> > back along with other Ideas. However, in the TargetingIdeaService
> > tool, I get the Ideas but do not get the seed keyword data back.
>
> > Is that expected behavior? Am I failing to understand something here?
>
> > Thank you
> > Jai

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Calls taking a long, LONG time.

2011-01-06 Thread AdWords API Advisor
Hi,

If you are noticing performance issues related to the client library
(and not the API itself) please file an issue on the project's site:

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

Best,
- Eric

On Jan 6, 10:03 am, Alexander Parij  wrote:
> Hi ,
>
> Try to set the page size to 100 entries.
> I don't know what language library you are using,  but we used python's with
> ZSI to process the soap response. It was extremely slow when we had page
> size of let's say 1000 . I don't know what happens inside but the code is
> not that optimized
> and the processing time rises exponentially actually even 100 entires
> was a bit slow and we just changed to the older SOAPPY because it's MUCH
> faster.
>
> Hope it helps.
> Alexander Parij

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: traffic estimator geotarget

2011-01-06 Thread AdWords API Advisor
Hi Murali,

You are likely making this request against the sandbox environment,
which returns dummy data for these requests.

Best,
- Eric

On Jan 5, 6:05 am, Murali4044  wrote:
> Hi Eric,
>
> Thanks for your reply. through this API i am getting very high values for
> example keyword "florist" location is New york,US-NY,US. the value is give
> below.
>
> Results for the keyword with text 'florist' and match type 'BROAD':
> Estimated average CPC: -1765467296
> Estimated ad position: 4.00
> Estimated daily clicks: 35089
> Estimated daily cost: 201250
>
> But through Google Traffic Estimator the estimated daily clicks is 37.
>
> Can you please explain where is the problem
>
> Many Thanks
> Murali

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: “Automatic Content Network(Display Network)” statistics of each ad group

2011-01-06 Thread AdWords API Advisor
Hi Onur,

The StatsSelector object doesn't have a network field, and it's not
possible to get the stats segmented by network using this service.
Using the ReportDefinitionService, you can filter on the fields
AdNetworkType2 to limit the stats to only the Search, Search Partners,
or Display network.

  http://code.google.com/apis/adwords/docs/appendix/reports.html#ad-group

Best,
- Eric

On Jan 5, 6:41 am, Onur  wrote:
> Hi Eric,
>
> StatsSelector parameter returns "ALL" Network statistics. We want to
> have the click and view statistics of each ad group. If we try to set
> the network parameter the returning value is the same with he "All"
> Network stats. We only want to have the statistics of the "Automatic
> Content(Display) Network". The function we used is given below.
>
> Sample:
> $selector = new AdGroupSelector();
> $selector->campaignId = (float) $campaignID;
> $selector->statsSelector = new StatsSelector();
> $selector->statsSelector->dateRange = new DateRange("20110101",
> "20110105");
>
> I tried this:
> $selector = new AdGroupSelector();
> $selector->campaignId = (float) $campaignID;
> $selector->statsSelector = new StatsSelector();
> $selector->statsSelector->dateRange = new DateRange("20110101",
> "20110105");
> $selector->statsSelector->network = "CONTENT";
>
> or
> $selector = new AdGroupSelector();
> $selector->campaignId = (float) $campaignID;
> $selector->network = "CONTENT";
> $selector->statsSelector = new StatsSelector();
> $selector->statsSelector->dateRange = new DateRange("20110101",
> "20110105");
>
> On Jan 5, 12:50 am, AdWords API Advisor 
> wrote:
>
>
>
>
>
>
>
> > Hi Onur,
>
> > Are you referring to the Stats object returned by using the
> > StatsSelector?  Those values should contain the Automatic Placements
> > data.  Are you seeing otherwise?
>
> > Best,
> > - Eric Koleda, AdWords API Team
>
> > On Dec 29 2010, 7:44 am, Onur  wrote:
>
> > > We want to have the “Automatic Content Network(Display Network)”
> > > statistics of each ad group. We can only have the keyword and content
> > > placement statistics using the “stats” function. Could you help us
> > > which function(or formula) we should use to achieve the statistics.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Getting AdID of product listing ad clicked for Google Merchant Center product

2011-01-06 Thread AdWords API Advisor
Hi,

A ProductAd doesn't have a destination URL, and the API doesn't let
you set one.  The URLs used come from the product itself.  Because of
this it makes sense that the ad report wouldn't contain the URLs.  I
understand that there is a need to get stats about how well different
products perform, and I'll work with the core engineering team to
determine what can be done.

Best,
- Eric

On Jan 5, 9:33 am, CFJ  wrote:
> Just chiming in with a second voice on the importance of this issue.
> All of the various reports absolutely need to have destination URL
> populated when reporting on PLAs.  Embedding tracking parameters
> within landing page URLs is a pretty industry-standard method for
> tying clicks to conversions.  Without destination URL in the
> reporting, it's nearly impossible to analyze any granularity with
> respect to PLAs (unless of course one chooses to implement this such
> that each AdGroup contains a target for one, and only one, product).

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Getting ideas closely related to my search term -TargetingIdeaService

2011-01-06 Thread AdWords API Advisor
Hi Jai,

You can get similar results using the IdeaTextMatchesSearchParameter

  
http://code.google.com/apis/adwords/docs/reference/latest/TargetingIdeaService.IdeaTextMatchesSearchParameter.html

Best,
- Eric Koleda, AdWords API Team

On Jan 5, 11:24 am, Jai  wrote:
> Hello,
> I am using the TargetingIdeaService. I have been able to use the API to get
> most of the results and options provided by the keyword tool. However, I am
> unable to add one feature - "Only show ideas closely related to my search
> terms" check box options seen in the keyword tool.
>
> What should I be looking for under TargetingIdeaService to get this feature?
>
> Thank you
> Jai

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Geo location report

2011-01-06 Thread pure
Thank you very much,Eric Koleda.

On 1月7日, 上午6时00分, AdWords API Advisor 
wrote:
> Hi,
>
> The Geographic Performance Report is currently only available in the
> v13 version of the API:
>
>  http://code.google.com/apis/adwords/docs/developer/adwords_api_report...
>
> This report should be available in the ReportDefinitionService next
> version of the API.
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jan 6, 4:48 am, pure  wrote:
>
> > Does adwords api have that function?
> > help
>
> > On 1月5日, 下午6时49分, pure  wrote:
>
> > > help
>
> > > On 1月4日, 下午1时31分, faqing wu  wrote:
>
> > > > hi,
> > > >  Does adwords api have geo location report service? I have not found
> > > > in ReportDefinitionService.
> > > >  Anyone knows about this?
>
> > > > Thanks,
> > > >   pure

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Can i able to set my budget of Campaign

2011-01-06 Thread AdWords API Advisor
Hi Smitty,

Just wondering if your wamp installation has different php.ini for
command line and apache configurations? curl could be enabled in only
one of them. Calling phpinfo() before running the example should give
you more details.

You can retrieve the campaign statistics by adding statsSelector field
to CampaignSelector when retrieving the campaigns. See
http://code.google.com/apis/adwords/docs/reference/latest/CampaignService.CampaignSelector.html#statsSelector
for details.

You can udpate the budget by setting a new Budget object to the budget
field and then updating the campaign. See
http://code.google.com/apis/adwords/docs/reference/latest/CampaignService.Campaign.html#budget
for details. You can also refer to
http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201008/UpdateCampaign.php?r=116
for details on how budget can be updated.


Cheers,
Anash P. Oommen,
AdWords API Advisor.


On Jan 6, 10:51 am, Smitty Isidhore  wrote:
> Hi
>
> I want to manage my adword campaign through application program. I
> wish to reset the budget for both daily and monthly as well as i wish
> to retrieve informations such as number of clicks/day and amount spend
> per day  through my application program. Can this possible? I already
> have a campaign in adwords. I wish to do application program in php, i
> downloaded the php client library and installed. Now im trying some
> examples in v200909 sandbox. My php version is 5.3.0. When i tried
> getAllCamaigns.php in examples im getting an error telling "
> Fatal error: Call to undefined function curl_init() in C:\wamp\www
> \aw_api_php_li
> b_2.4.0\src\Google\Api\Ads\Common\Util\AuthToken.php on line 114".
> curl is enabled. any suggestion to resolve this problem?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: sunset for reporting api v13

2011-01-06 Thread AdWords API Advisor
Hi,

We haven't announced a sunset date for v13 reporting or v200909. You
can keep track of AdWords API Blog, where we make various AdWords API
announcements and sunset dates:

http://adwordsapi.blogspot.com/

Cheers,
Anash P. Oommen,
AdWords API Advisor

On Jan 6, 4:48 am, codeninja  wrote:
> Just wondering now that the reporting is out of beta in v201008, if
> v13 reporting will be shutdown soon (in next few months)? also what
> about v200909?
>
> 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: KeywordPerformanceReport - datatype for TotalConvValue?

2011-01-06 Thread AdWords API Advisor
Hi mm,

I'll check this at my end later today and confirm with the AdWords
team about this behaviour.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jan 6, 8:58 pm, mm  wrote:
> Hey Anash -
> I do have that header set in my request, and the other monetary values
> that I requested (Cost, MaxCpc & MaxCpm) are returned as longs. Only
> TotalConvValue is not.
>
> Thanks -
> mm
>
> On Jan 6, 2:25 am, AdWords API Advisor 
> wrote:
>
>
>
>
>
>
>
> > Hi,
>
> > Right now, report fields that are monetary values are returned as
> > currency values (decimal) rather than as micros (long) by default. You
> > can get the micro values by sending "returnMoneyInMicros: true" as
> > http headers when downloading the report. See this blog post for more
> > details:
>
> >http://adwordsapi.blogspot.com/2010/11/change-to-currency-formatting-...
>
> > Cheers,
> > Anash P. Oommen,
> > AdWords API Advisor.
>
> > On Jan 5, 4:04 am, mm  wrote:
>
> > > Hey guys -
> > > According to the documentation - both via getReportFields api and the
> > > online doc - TotalConvValue/ConversionValue in the
> > > KeywordPerformanceReport is a long. However, when running reports
> > > containing this value, a decimal value is returned. Is it safe to
> > > assume that this is actually a currency value (which makes more sense
> > > anyway)?
>
> > > Thanks -
> > > mm

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Calls taking a long, LONG time.

2011-01-06 Thread Kevin
Hi Eric,

How do I get the request ID?  I'll be happy to provide if you can
point me to where I can locate that value?

On Jan 5, 3:12 pm, AdWords API Advisor 
wrote:
> Hi Kevin,
>
> That is certainly abnormal, and I'm not able to replicate it on my
> end.  Can you provide the requestId of a request that demonstrates
> this problem?
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jan 4, 11:11 pm, Kevin  wrote:> More specifics:
> > 130 campaigns took this long to return results...
>
> > 4853.3525959 seconds elapsed. 130 entries retreived
>
> > Seriously - 81 minutes?
>
> > On Jan 1, 9:07 pm, Kevin Hill  wrote:
>
> > > Is it normal for a get operation for all campaigns to take hours to
> > > download?
> > > I am pulling pages with a numberResults set to 1000 - and get
> > > operations are taking a LONG time.
>
> > > I have 20-25k of keywords - and currently I am at 10,000 in roughly 4
> > > hours.
>
> > > Is this Normal?
>
> > > Tech details:
> > > I am passing a page request with
> > > numberResults = 1000
> > > startIndex = StartIndex + 1000  (starts at 0)
>
> > > criterionUse = BIDDABLE
> > > userStatuses = ACTIVE, DELETED, PAUSED
>
> > > Using an AdGroupCriterionService to execute a Get with a
> > > AdGroupCriterionSelector with the above info.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Calls taking a long, LONG time.

2011-01-06 Thread Kevin
Here is a requestID
04a2e2b34d44c37944bcf2117014f018

I cut back my request length to 50 - and this one took about 58
seconds.
I have 31,790 ads to retreive at at this speed it will take a bit over
10.2 hours to sync up?
This seems pretty slow - when a report of all this information takes
perhaps 30 seconds?

On Jan 6, 8:08 pm, Kevin  wrote:
> Hi Eric,
>
> How do I get the request ID?  I'll be happy to provide if you can
> point me to where I can locate that value?
>
> On Jan 5, 3:12 pm, AdWords API Advisor 
> wrote:
>
>
>
> > Hi Kevin,
>
> > That is certainly abnormal, and I'm not able to replicate it on my
> > end.  Can you provide the requestId of a request that demonstrates
> > this problem?
>
> > Best,
> > - Eric Koleda, AdWords API Team
>
> > On Jan 4, 11:11 pm, Kevin  wrote:> More specifics:
> > > 130 campaigns took this long to return results...
>
> > > 4853.3525959 seconds elapsed. 130 entries retreived
>
> > > Seriously - 81 minutes?
>
> > > On Jan 1, 9:07 pm, Kevin Hill  wrote:
>
> > > > Is it normal for a get operation for all campaigns to take hours to
> > > > download?
> > > > I am pulling pages with a numberResults set to 1000 - and get
> > > > operations are taking a LONG time.
>
> > > > I have 20-25k of keywords - and currently I am at 10,000 in roughly 4
> > > > hours.
>
> > > > Is this Normal?
>
> > > > Tech details:
> > > > I am passing a page request with
> > > > numberResults = 1000
> > > > startIndex = StartIndex + 1000  (starts at 0)
>
> > > > criterionUse = BIDDABLE
> > > > userStatuses = ACTIVE, DELETED, PAUSED
>
> > > > Using an AdGroupCriterionService to execute a Get with a
> > > > AdGroupCriterionSelector with the above info.- Hide quoted text -
>
> - Show quoted text -

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Traffic Estimator Service(v201008) returning improper results

2011-01-06 Thread external...@spurtz.com
Hi Eric,

Thanks for your response.

I tried two sets of keywords, I am attaching the Traffic Estimator outputs 
to this post that are in XML format for our convenience.
These are tested in production environment.Please suggest me. How the 
Estimates are coming improper.

Regards
Sambaiah B
Spurtz Application Developer 
samba.bethap...@gmail.com



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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
?Input of keywords
--

keyword=java tutorial   keywordMatchType=BROAD
keyword=java download   keywordMatchType=PHRASE
keywordText=java keywordMatchType=EXACT

output in xml 
-



  CampaignEstimate
  

  AdGroupEstimate
  

  KeywordEstimate
  

  Money
  0

0.0
0

  Money
  0

  
  

  Money
  0

0.0
0

  Money
  0

  


  KeywordEstimate
  

  Money
  0

0.0
0

  Money
  0

  
  

  Money
  0

0.0
0

  Money
  0

  


  KeywordEstimate
  

  Money
  0

0.0
0

  Money
  0

  
  

  Money
  0

0.0
0

  Money
  0

  

  

  

  ?
Input of keywords
--

keyword=runcorn eportal keywordMatchType=BROAD
keyword=bradford eportalkeywordMatchType=BROAD
keyword=eportal.eca.ac.uk   keywordMatchType=BROAD
keyword=serco eportal   keywordMatchType=BROAD
keyword=obafemi awolowo university eportal  keywordMatchType=BROAD
keyword=eportal.pwr.wroc.pl keywordMatchType=BROAD
keyword=eportal.cityu.edu.hkkeywordMatchType=BROAD
keyword=eportal.ue.wroc.pl  keywordMatchType=BROAD

output in xml 
-




  CampaignEstimate
  

  AdGroupEstimate
  

  KeywordEstimate
  

  Money
  300

1.0
0

  Money
  0

  
  

  Money
  300

1.0
0

  Money
  0

  


  KeywordEstimate
  

  Money
  300

1.0
0

  Money
  0

  
  

  Money
  300

1.0
0

  Money
  0

  


  KeywordEstimate
  

  Money
  300

1.0
0

  Money
  0

  
  

  Money
  300

1.0
0