Re: approved again INCOMPLETE_SIGNUP_USER_INFO_PENDING

2012-03-27 Thread Anash P. Oommen
Hi Rachel, I've pinged the team again, they will get back to you, or I'll mail you directly if they can't reach you. Cheers, Anash P. Oommen, AdWords API Advisor. On Wednesday, 21 March 2012 21:48:04 UTC+5:30, Rachel wrote: > > Hi Anash, > > It has been more than 2 weeks since I replied token t

Re: where to do performance/load tests for adwords applications

2012-03-27 Thread Anash P. Oommen
Hi Sun, IMO, the best thing to do would be to mock out the AdWords API endpoint - e.g. setup a local server that sends mock responses for your SOAP requests and use that to emulate various conditions - e.g. a delay of 2 minutes to download a report, a rate exceeded error if you perform more tha

Re: Adwords API pending approval, Can I use my developer Token?

2012-03-27 Thread Anash P. Oommen
Hi Aby, Did you hear back from the review team yet? Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday, 13 March 2012 05:52:15 UTC+5:30, Aby17 wrote: > > > Hello, > > I need help concerning the adwords API, I applied late 2011, got rejected > but I still don't know why (no explanation p

Re: Upper limit on Operations per Request

2012-03-27 Thread Anash P. Oommen
Hi Dan, The list of possible values for rateName aren't externally published. You could however handle RateExceededError gracefully in your application. You can find more information about RateExceededError here: http://adwordsapi.blogspot.com/2010/06/better-know-error-rateexceedederror.html A

Re: API access stopped

2012-03-27 Thread Anash P. Oommen
Hi, If you can provide your API MCC customer id, I could take a look to make sure if the account and its configuration is okay. Cheers, Anash P. Oommen, AdWords API Advisor. On Monday, 26 March 2012 16:11:22 UTC+5:30, TurkeyTwizzler wrote: > > Hi all, > > I've had an unusual occurence with the

Re: TargetingIdeaService - AVERAGE_TARGETED_MONTHLY_SEARCHES

2012-03-27 Thread Maria Engström
Great! Thanks for this, helped a lot :) Den måndagen den 26:e mars 2012 kl. 23:40:22 UTC+2 skrev Kevin Winter: > > Hi, > I was able to reproduce your issue when specifying the Language as > Swedish. I spoke to my colleague who said that the Language actually > doesn't affect a STATS request -

Fetch data with OAuth

2012-03-27 Thread Treeleaf Media
Hello, Is there a limitation on what data you can fetch by using an oauth token ? For instance, I was able to get campaign data with *CampaignService*, but I was unable to get information with the *ServicedAccountService*. It returned an empty data set. Thanks in advance -- =~=~=~=~=~=~=~=~=~=

Re: Fetch data with OAuth

2012-03-27 Thread Treeleaf Media
> For instance, I was able to get campaign data with *CampaignService*, but > I was unable to get information with the *ServicedAccountService*. > For this question I found out that it's normal that you don't have data with *ServicedAccountService* if you try to get the info for a single Ad

Re: NullReferenceException on DownloadReportToStream when downloading ad report

2012-03-27 Thread Joanna
Hi Anash, I found the reason for the error was the timeout. The value from the app config was not used in the request so when I have set it manually it was working. I will add this to the issues list. Best regards, Joanna W dniu poniedziałek, 12 marca 2012, 15:36:32 UTC+1 użytkownik Anash P. Oo

Error: Unable to locate billing information for that Developer Token

2012-03-27 Thread Charles Best
Hi, I try to get the API Unit information but I have some problem. I use PHP library, this is a part of my code: $email = "my_mcc_email"; $password = "x"; $userAgent = "SOMETHING"; $applicationToken = ""; $developerToken = "my_mcc_email++USD"; $user = new AdWordsUser

Moving from v201101 to v201109 in XML and getting operand.experimentData.experimentId errors

2012-03-27 Thread Oddball
I have been given the task of upgrading our google adwords from v201101 to v201109 which has been developed in ASP (classic it must be noted) and I am coming up against error after error while trying to understand what the new API wants (very difficult considering the total lack of XML example

Re: Upper limit on Operations per Request

2012-03-27 Thread Dan Ricker
Thx for the response Anash. All is completely understood, I was only providing a "context" that Eric asked about. On Tuesday, March 27, 2012 12:25:49 AM UTC-7, Anash P. Oommen wrote: > Hi Dan, > > The list of possible values for rateName aren't externally published. You > could however handl

Re: What is the required parameter to use Oauth

2012-03-27 Thread Pranav Dubey
Thanks Danial. Can u please tell me that is developer token required for oauth implementation? I am working with sandbox enviornment and successfully implemented oauth access but when I am not putting developer token, it gives error and when put any anythig like abc or 123 it's working.What w

Re: How can an indendent adwords account access adwords client library

2012-03-27 Thread Anash P. Oommen
Hi Pranav, Yes, you can. email/password/clientCustomerId to be specified in the configuration file of the library would be the email/password/clientCustomerId of the independent AdWords account. You will also need an approved developer token, I'm assuming you already have one. Cheers, Anash P

Re: AdWords Search Funnels

2012-03-27 Thread Ed-
> > Hi, I am not sure if it is a good thing to bring old posts back, but I got a similar request this morning. Do you think there are any news about API access to "Assisted Conversions"? Thank you, Edelmar Em terça-feira, 21 de junho de 2011 15h17min28s UTC-3, David Torres escreveu: > > Hi

Re: What is the required parameter to use Oauth

2012-03-27 Thread Anash P. Oommen
Hi Pranav, You need a developer token when using OAuth. For sandbox environment, the developer token is your_gmail_address++CURRENCYCODE (e.g. john@gmail.com++USD). For production environment, you need an approved developer token. Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday,

Re: Error: Unable to locate billing information for that Developer Token

2012-03-27 Thread Anash P. Oommen
Hi, You are sending your sandbox developer token to the production environment. When making calls to the production environment, you need to substitute the sandbox developer token with your approved developer token in auth.ini. Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday, 27 March

Re: Fetch data with OAuth

2012-03-27 Thread Anash P. Oommen
Hi, AdWords API works the same way for access control whether you use ClientLogin or OAuth. The effective user is determined first by the ClientLogin/OAuth header, and then overridden by the clientCustomerId header. Hope this helps. Let me know if you have more questions. Cheers, Anash P. Oom

Re: NullReferenceException on DownloadReportToStream when downloading ad report

2012-03-27 Thread Anash P. Oommen
Hi Joanna, I released a new version of the library that addresses this issue. Thanks for reporting the issue and identifying the cause. Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday, 27 March 2012 16:01:40 UTC+5:30, Joanna wrote: > > Hi Anash, > I found the reason for the error was t

Re: Failed to Get a List of Automatic Placements via AdGroupCriterionService

2012-03-27 Thread GregT
Hi, Tommy. You can actually get that information from the Criteria Performance Report. It will show up with a keyword of "Content" (criteria id 300), criteria type of "Keyword". FYI, Greg On Monday, March 26, 2012 6:22:36 PM UTC-5, Tommy Choi wrote: > > Thanks Kevin, > > I found that the

Talk to the API Team - AdWords API Office Hours

2012-03-27 Thread Danial Klimkin
Hi All, We are holding AdWords API Office hours tomorrow (Mar 28, 2012), timings are: - AdWords API Office Hours Europe (11AM London, 12PM Frankfurt, 2PM Moscow): https://developers.google.com/events/ahNzfmdvb2dsZS1kZXZlbG9wZXJzcg0LEgVFdmVudBjxmDEM/ - AdWords API Office Hours US

Re: Failed to Get a List of Automatic Placements via AdGroupCriterionService

2012-03-27 Thread Kevin Winter
Hi Tommy, Greg, This is partially correct. You can obtain the figures for the Other Domains (as listed in the UI) by running a Criteria Report for all Criteria types that can trigger automatic placements (such as keywords, verticals, etc), take the totals from that report and subtract the sum

Re: Efficient AdHoc report downloads

2012-03-27 Thread Adam Weiss
Anash, Thank you, I will try this. Also, most documentation says use up to 10 threads, but the Java exampleuses 2

Re: Adwords API - managed URLS

2012-03-27 Thread Kevin Winter
Hi, What do you mean by "managed" URLs / Domain? - Kevin Winter AdWords API Team On Sunday, March 25, 2012 10:44:51 AM UTC-4, Itai Regev wrote: > > I am trying to fetch the list of managed URLs / Domain using the Adwords > API, but can't find the right way to do it. > does anyone know which of

Re: Sandbox - simulate error response

2012-03-27 Thread Kevin Winter
Hi, This was available in the old API (v13) but it not possible in the current version (v201109). - Kevin Winter AdWords API Team On Sunday, March 25, 2012 12:19:32 PM UTC-4, u...@taykey.com wrote: > > Hi again, > > i sercehed this topic over the forum and the blog > all i could find was that

Re: OAuth and the java client library

2012-03-27 Thread Kevin Winter
Hi, As the maintainer of the Java library, I can say that the main java library will not be getting OAuth - it would require breaking changes and a good bit of code acrobatics to get working given the current architecture. The new java library addresses these issues and makes it possible to

Re: Sandbox - simulate error response

2012-03-27 Thread u...@taykey.com
Thank you Kevin! On Tuesday, March 27, 2012 5:27:44 PM UTC+2, Kevin Winter wrote: > > Hi, > This was available in the old API (v13) but it not possible in the > current version (v201109). > > - Kevin Winter > AdWords API Team > > On Sunday, March 25, 2012 12:19:32 PM UTC-4, u...@taykey.com wro

Re: Report with yesterday's costs for each client account on an mcc

2012-03-27 Thread t...@strapper.net
Hi Eric, thanks for your definitive answer, How does one find a list of all the accounts in an MCC so an iteration of each client account can be executed? Cheers Trev On Saturday, February 4, 2012 1:15:42 AM UTC+8, Eric Koleda wrote: > > Hi, > > Cross-client reports are no longer support, and y

Re: where to do performance/load tests for adwords applications

2012-03-27 Thread H Sun
Hi All, Thanks for the replies. The challenge is to figure out what a realistic throughput we can expect from AdWords API before it returns RateExceededError. For example, if my goal is to update 1M keywords per hour. I can easily mock the API to support that throughput rate, but I suspect t

Can the API access the campaign label?

2012-03-27 Thread Douglas O'Neal
The My Client Center ui allows labels to be created and associated with campaigns. Are there any API calls that will retrieve these associations? I'd like to be able to use the api to download a report and to match it up to a MCC label. Thanks. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Reminder: Demographic performance report deprecation

2012-03-27 Thread Eric Koleda
Hi, As we blogged about last month, the DEMOGRAPHIC_PERFORMANCE_REPORT is deprecated and was scheduled for sunset last week: http://googleadsdeveloper.blogspot.com/2012/02/demographic-performance-report.html We'll be completely shutting down the report later this week, so please ensure that yo