Re: Disapproved keywords returned as enabled by AdHoc reports?

2012-02-13 Thread veseo
Hi, yes, I am selecting the Status field from the Keywords Performance Report. Thanks for the answer, hope a way to get the approval status is provided in a future version of the API. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group:

Re: approved again INCOMPLETE_SIGNUP_USER_INFO_PENDING

2012-02-13 Thread Antoine Herzog
Thank you Anash My manager at Orixa Media send an email this friday .. MCC : 654-335-9637 Thank you again ! Antoine On Feb 13, 6:20 am, Anash P. Oommen anash.p.oommen +fo...@google.com wrote: Hi, Reach out to adwordsapi-tok...@google.com, they manage AdWords API token reviews. Cheers,

Re: MutateJobService with mix operations

2012-02-13 Thread AdWordsAPIAdvisor
Hello George, The benefits are: - asynchronism - you can fire jobs very quickly, - error handling - MJS will retry transient errors automatically, - parallelism - jobs will be ran concurrently, - API units cost is lower. As for grouping, it really depends on the values of N and M. If both are

Re: ADD_OPERATION_NOT_PERMITTED when using sample code v201109

2012-02-13 Thread AdWordsAPIAdvisor
Hi Neil, The clientCustomerId 0 does not look correct. It should be a 10-digit number in format '1234-123-123'. -Danial, AdWords API Team. Original Message Follows: From: Neil Kirk skeni...@gmail.com Subject: Re: ADD_OPERATION_NOT_PERMITTED when using sample code

Re: MutateJobService.mutate unit cost

2012-02-13 Thread George Ciubotaru
Hi Anash, Where can I find more details about this formula, I didn't find it documented anywhere? For example what is cost for simplemutatejob for completion? Anyway, the most expensive part of this formula is *(actual cost for operations in synchronous mode) / 2*. I'll try to compute this

Re: ADD_OPERATION_NOT_PERMITTED when using sample code v201109

2012-02-13 Thread Neil Kirk
Hey, When I run the get_account_hierarchy.pl example, it returns: Login, CustomerId (Status, Description) Root, 0 -- client_5+@gmail.com, 0 (ESTABLISHED) client_5+@gmail.com, 0 (ESTABLISHED) This loops over and over again, until I ctrl+c to break the script. I have tried getting

Re: deleted text ads metric are no longer part of default data in AD_PERFORMANCE_REPORT (201101)

2012-02-13 Thread lorenzo de nigris
I Eric, yes that's what i meant - regular Adwords web interface. I searched for this issue and found a conversation about it only on your forum, that's why I asked. Ok, I will open a new one in the general Adwords section, then. Thanks Lorenzo --

Re: InternalApiError.UNEXPECTED_INTERNAL_API_ERROR during CreateAccountOperation in sandbox

2012-02-13 Thread Jerzy Biernacki
Hi, I'm facing the same problem (using PHP with and without client library). To replicate, try the CreateAccount.php example with PHP 5.3.5. For me, it ended up with: An error has occurred: InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-13 Thread Nalica
Thanks Anash. The Id I have is an MCC account. I will use the API to retrive the list of child accounts. I have some questions on the CAPTCHA challenge. I am creating an automation to download the report. It won't be possible to respond to the CAPTCHA challenge within the automation. I have

Re: Returning % values as float like 0.026166... rather than string like '2.62%' in AdHoc reporting

2012-02-13 Thread Kevin Winter
Hi, What type of reporting were you using prior to AdHoc? Was it v13? - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api

Re: ConversionOptimizerEligibility set to true on add campaign, when subsequent get operations would indicate otherwise

2012-02-13 Thread Kevin Winter
Hi, Thanks for the report. I can confirm this happens to me in sandbox when the campaign is added with status ACTIVE (our examples usually add it as PAUSED) but that production correctly returns false. I've file a request with the core engineering team to take a look, but in the meantime i

Re: 201109 keyword report - getting display data

2012-02-13 Thread Ed-
Thanks a lot Anash! That worked perfectly. Anyone having the same issue, I used the following code to download complete data - search and display: $user = new AdWordsUser(NULL, $email, $password, $developerToken,$applicationToken , $userAgent, $iSeAccountId, $settingsIniPath, $authToken,

Re: AdHoc report error

2012-02-13 Thread Kevin Winter
Hi, If you are using the DotNet client library, I encourage you to make sure you are running the most recent version ( http://code.google.com/p/google-api-adwords-dotnet/downloads/list). You may be running an outdated version. Older versions may not provide the Developer Token with report

Re: V201109: Keywords Report comes back empty, but Ad Performance Report returns rows

2012-02-13 Thread Kevin Winter
Hi, I responded off-forum already. Pasting my response here in case it helps others: The AdNetworkType1 field prevents zero impressions but your report has no metrics fields selected. If you want to do a Structure-style reports, you need to remove AdNetworkType1 and its predicate. If you want

Re: AdWords API on Java App Engine

2012-02-13 Thread Kevin Winter
Hi Ewan, I'm the maintainer for the new AdWords java library. Unfortunately, we ran into quite a few issues getting jax-ws to sanely generate classes from the wsdls (we had to combine the XSD from all wsdls into a single one to get them generated correctly. We plan to have a

Re: Google Report Definition Web Service

2012-02-13 Thread Orlando
Hi Anash, Thanks! I added the authToken to the code, that part is solved. However, now it seems that the SOAP is not correct. Could you please help yo find what I'm missing? It gave an error in the line AccountNew = createAccountService.mutate(New

Re: Google Report Definition Web Service

2012-02-13 Thread Orlando
This is the error: Failed to create accounts. Exception says...Missing SoapHeader while invoking public abstract java.util.List com.google.ads.api.services.mcm.createaccount.CreateAccountService.mutate(java.util.List) throws com.google.ads.api.services.common.error.ApiException with params

BoomUserList, Content, WebSite

2012-02-13 Thread Jeff Kershner
I see Eric from the AdWords team explain BoomUserList all over the place saying that it is a statistic that comes back from a report. I feel bad for asking this question again but... I believe that I should only be seeing: Exact, Broad and Phase values coming back in the KeywordType parameters.

Re: Adwords Report HTTP Error 400

2012-02-13 Thread Anash P. Oommen
Hi Paulo, That depends on the language you are using. For .NET, I'd recommend Fiddler2 (http://fiddler2.com/fiddler2/) as the proxy, and then the code to set proxy would look like: WebRequest webRequest = HttpWebRequest.Create(URL); WebProxy proxy = new WebProxy(); proxy.Address = new

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-13 Thread Anash P. Oommen
Hi Nalica, CAPTCHA challenge is thrown by the ClientLogin API ( http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html) if you request a large number of authTokens in a short period of time. It has nothing to do with AdWords API as such, so if you reuse your authTokens, you won't

Re: ADD_OPERATION_NOT_PERMITTED when using sample code v201109

2012-02-13 Thread Anash P. Oommen
Hi Neil, Try using a different email to make your sandbox calls. We have an issue with the sandbox where it returns 0 for some sandbox client accounts. Cheers, Anash P. Oommen, AdWords API Advisor. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion

PHP client libraries downloads

2012-02-13 Thread stiggywigget
Need to fix the issue with requiring DeveloperTokens (as of 2/7/12). Stated required libraries is 2.7.1. Where can I find this version. Or anything older than v3.0.0. It appears to me that v.3 is going to break the application and force significant rewrites. I'm using 201008 v.2.3.0 now. Thanks!

Re: PHP client libraries downloads

2012-02-13 Thread stiggywigget
Sorry, I found the 2.7.1 libraries. Now to see if they work with this old (14 months!) code. Kirk On Feb 13, 10:33 pm, stiggywigget k...@kirksamuelson.com wrote: Need to fix the issue with requiring DeveloperTokens (as of 2/7/12). Stated required libraries is 2.7.1. Where can I find this

Re: Adwords API token pending approval for over 1 month

2012-02-13 Thread Anash P. Oommen
Hi everyone, One advise to share - make sure you provide a valid contact email address when signing up for AdWords API, and regularly track emails sent to that account. I've been hearing from the review team that some of the cases I forward from the forum are ones where the review team wrote

This is a test

2012-02-13 Thread Darren
I assume I can delete this myself :-) -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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

UNEXPECTED_INTERNAL_API_ERROR on creating TextAds

2012-02-13 Thread Minh Tran
I've been the sandbox for the last month and it has been working ok til today. I've attached the request/response/stacktrace as follows. Any ideas? 11:18:31,781 DEBUG com.google.api.adwords.lib.AdWordsUser.soap_xml main - ?xml version=1.0 encoding=UTF-8?soapenv:Envelope

Re: Google Report Definition Web Service

2012-02-13 Thread Anash P. Oommen
Hi Orlando, I suspect the problem is a variant of the one listed here: http://code.google.com/p/google-api-adwords-dotnet/wiki/NoClientLibrary#a._Xml_namespace_collision_between_class_and_System.Web.Services. Could you post the sanitized SOAP request and response xmls here? You could setup

Re: PHP client libraries downloads

2012-02-13 Thread Anash P. Oommen
Hi Kirk, It will most likely work for now, but note that v201008 is scheduled for sunset 2 weeks from now. If you haven't done so, please start migrating to v201109 at the earliest. Blog post announcement:

Re: MutateJobService.mutate unit cost

2012-02-13 Thread Anash P. Oommen
Hi George, Let me clarify - when you create a SMJ, you start by creating the job (MutateJobService.mutate.ADD, 1 unit per job). Then you poll the service at regular intervals to see if the job completed (MutateJobService.get, 1 unit per job). Once the job completes, you retrieve the result

Re: Impressions zero and data metrics not returned

2012-02-13 Thread chris h
Look for this in the schema: xs:element minOccurs=0 name=includeZeroImpressions type=xs:boolean/ On Feb 12, 9:54 pm, Andrezza andrezza...@gmail.com wrote: At the migration from v13 to v201109 version we are using 'AdHoc reports with plain HTTP POST requests' to download the reports

Re: AdHoc report error

2012-02-13 Thread Anash P. Oommen
Hi, The latest library version supports proxy for report downloads. You could download and install Fiddler (http://fiddler2.com/fiddler2/) as an HTTP proxy. Start Fiddler, configure it to decrypt https traffic. Specify ProxyServer key in your App.config/Web.config as http://localhost:.

Re: Impressions zero and data metrics not returned

2012-02-13 Thread Anash P. Oommen
Hi Andrezza, As Chris mentioned, you can get zeroImpressions by specifying includeZeroImpressions = true in the report definition xml. Also, you are correct in using Date field to request segmentation by day. As for IS data, they are updated daily by around 3-4PM PST, so depending on when you

Developer token pending approval over 2 weeks...

2012-02-13 Thread Christophe
Hello, We use to have a developer token and we had to re-apply. It has now been over 2 weeks and it is still in Pending approval status. When can we expect our request to be processed? Thank you, Christophe PS: We actually have 3 developers working on our application that will interact with

UNEXPECTED_INTERNAL_API_ERROR on creating TextAd

2012-02-13 Thread Minhster
I have been using the sandbox ok for the past month and all worked ok til today. Creating text ads gives me this error. Request/response/stacktrace details below 11:18:31,781 DEBUG com.google.api.adwords.lib.AdWordsUser.soap_xml main - ?xml version=1.0 encoding=UTF-8?soapenv:Envelope

UNEXPECTED_INTERNAL_API_ERROR creating TextAds

2012-02-13 Thread Minhster
Sorry if this is a duplicate post. I could've sworn I posted this successfully earlier but I can't see it. I've been using the sandbox account ok for the past month now but today I am encountering this error when I go to create a text ad. Following are the request/response/stacktrace details.

Re: Adwords API AdHoc Reporting with ASP.net

2012-02-13 Thread Anash P. Oommen
Hi VIjay, That's for v201109, using AdWords API .NET client library. What issues are you facing? Cheers, Anash P. Oommen, AdWords API Advisor. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com

Call to AdgroupAdService start failing

2012-02-13 Thread Hudarsono Hu
Hi, May i know what was the problem with request : 0004b8e7e97e7a780a0c98142879 in sandbox ? It resulted in INTERNAL_API_ERROR, although the same code seems to works previously. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group:

Re: Call to AdgroupAdService start failing

2012-02-13 Thread Hudarsono Hu
Oh yes, as addition, it happened when adding text ads On Feb 14, 2:57 pm, Hudarsono Hu hudars...@gopherindonesia.com wrote: Hi, May i know what was the problem with request : 0004b8e7e97e7a780a0c98142879 in sandbox ? It resulted in INTERNAL_API_ERROR, although the same code seems to