Re: ReportDownloadError.INVALID_PARAMETER

2016-08-08 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi, Each AdWords API request can only be issued against a single customer account (see the Reporting guide ). However, we do have an opensource project that makes it easy to automate issuing request

Re: ReportDownloadError.INVALID_PARAMETER

2016-08-08 Thread swamy GVVSS
Hi Josh, I am trying to download the ACCOUNT_PERFORMANCE_REPORT from Adwords API. I have all the information to make a session with API. But the problem was I am having 800+ client customer id s to pass. Is there any alternate way to download the report for all the client Ids in a single shot.

Re: ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client information, FieldPath:

2014-12-29 Thread Danial Klimkin
Да, необходимо сделать раздельный запросы к каждому из под-аккаунтов и объеденить результаты на вашей стороне. Активный CID можно поменять во время выполнения, без изменения app.config. Как именно, смотрите в документации на библиотеку (зависит от языка). -Даниил. On Friday, December 26, 201

Re: ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client information, FieldPath:

2014-12-26 Thread USS UNITEDSUPPORTSERVICES
*Аккаунт Центра клиентов (MCC) *представляет собой зонтичный аккаунт Google AdWords с несколькими управляемыми аккаунтами. Да у нас под одним аккаунтом стоятся отчеты по подчиненным аккаунтам. Что мы можем сделать, чтобы через API строить такие-же отчеты по 21 подчиненному аккаунту. Или для это

Re: ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client information, FieldPath:

2014-12-26 Thread Danial Klimkin
Убедитесь, что clientCustomerId который вы отправляете, не является MCC аккаунтом. Отчеты через API доступны только для не-MCC. -Даниил. On Thursday, December 25, 2014 8:22:44 PM UTC+3, USS UNITEDSUPPORTSERVICES wrote: > > А где можно получить примеры отчетов, ошибок сейчас нет, но отчет из

Re: ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client information, FieldPath:

2014-12-26 Thread USS UNITEDSUPPORTSERVICES
А где можно получить примеры отчетов, ошибок сейчас нет, но отчет из примеров приходит пустой. Данные получаю используя главный ClientCustomerId таким запросом, пробовал в скриптах тоже отчет пустой. > private void Start_Click(object sender, EventArgs e) > { > AdWordsUser user = new AdWordsUse

Re: ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client information, FieldPath:

2014-12-25 Thread Владимир Шангеев
> > Судя по всему, вы не указываете ClientCustomerId. Нужно указать ID > аккаунта, для которого запрашивается отчет. > Извините, пересмотрев настройки обнаружил, что не верно указал . Должно быть Спасибо за ответ. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our

Re: ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client information, FieldPath:

2014-12-25 Thread Danial Klimkin
= 0; >> } >> catch (Exception ex) >> { >> msg.Text = msg.Text + ex.ToString() + Environment.NewLine; >> } >> } > > > > * 3. ReportUtilities utilities = new ReportUtilities(user, "v201409", > query, DownloadFormat.GZIPPED_CSV.ToString()); Возвращает ошибку:* &

ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client information, FieldPath:

2014-12-25 Thread Владимир Шангеев
eportUtilities(user, "v201409", query, DownloadFormat.GZIPPED_CSV.ToString()); Возвращает ошибку:* > Error: ReportDownloadError.INVALID_PARAMETER, Trigger: Missing client > information, FieldPath: > ---> System.Net.W

Re: ReportDownloadError.INVALID_PARAMETER

2014-07-21 Thread Josh Radcliff (AdWords API Team)
Hi, Let's try to keep things as straightforward as possible. Could you: 1. Copy your *adwords.properties* file to your home directory. 2. Change your constructor call to simply: my $client = Google::Ads::AdWords::Client->new(); 3. Try the example again. Thanks, Josh, AdWords API Team On Mon

Re: ReportDownloadError.INVALID_PARAMETER

2014-07-21 Thread Dhiraj Shinde
i am setting client object like follows my $client = Google::Ads::AdWords::Client->new( { version => 'v201406', properties_file => "/home/dhiraj/perl/GOOGLE-ADWORDS-PERL-CLIENT-2.16.0/adwords.properties", } ); adword.properties file contain all info as i told you in my prev post and when

Re: ReportDownloadError.INVALID_PARAMETER

2014-07-21 Thread Josh Radcliff (AdWords API Team)
Hi, As the dump of the Mech object shows, you do not have an *Authorization* header as specified in the OAuth2 guide . '_headers' => > bless( { >

Re: ReportDownloadError.INVALID_PARAMETER

2014-07-21 Thread Dhiraj Shinde
$VAR1 = bless( { 'ssl_opts' => { 'verify_hostname' => 1 }, 'res' => bless( { '_protocol' => 'HTTP/1.1', '_content' => 'ReportDownlo

Re: ReportDownloadError.INVALID_PARAMETER

2014-07-18 Thread Josh Radcliff (AdWords API Team)
Hi, As far as I can tell, the only way you can get *ReportDownloadError.INVALID_PARAMETER - Missing client information* is if you do not populate the *clientCustomerId* header. From your code snippet, however, it looks like you are populating it. Can you enable more logging or send the output

Re: ReportDownloadError.INVALID_PARAMETER

2014-07-18 Thread Dhiraj Shinde
HI Anash, Thanks for your reply, actually initially i used it like you mentioned only i.e Authorization => 'Bearer xxx' but later when it started giving error, i did some trial and error so i send you that code. following is the latest code of mine use WWW::Mechanize; my $mech

Re: ReportDownloadError.INVALID_PARAMETER

2014-07-15 Thread Anash P. Oommen (AdWords API Team)
Hi Dhiraj, Just wondering, shouldn't this be Authorization => 'Bearer xxx'? You can see how the headers should look like at https://developers.google.com/adwords/api/docs/guides/reporting Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday, July 15, 2014 11:43:42 AM UTC-4, Dhiraj Shinde w

ReportDownloadError.INVALID_PARAMETER

2014-07-15 Thread Dhiraj Shinde
Hi All, I am working on project which need some Google ad-word API usage, actually i need to download campaign_performance_report for my client for particular date, using the following script my $mech = WWW::Mechanize->new(); $mech->add_header({ clientCustomerId => "xxx-xxx-",#