Re: Ruby Report Utils 'Missing Client Information' error

2013-12-12 Thread Danial Klimkin
Hello, Please note ClientLogin is deprecated and v201309 is the latest version to support it. You should start using OAuth2 to be able to keep using the API in 2014. If you really want to use your generated AuthToken, the request look ok. Can you clarify what do you put into:

Re: Ruby Report Utils 'Missing Client Information' error

2013-12-09 Thread MrHuluBanulu
I have the same exact Problem, I think, How did this resolve? I have a server running a job that pulls data from Google Adword API(I am not using OAUTH2), the SOAP request are working fine. I'm using the same structure as Matthew when posting the request to

Re: Ruby Report Utils 'Missing Client Information' error

2013-12-09 Thread Matthew Ledom
I’m not using the adwords rails gem for this. I basically wrote my own method to handle reports setting all the header info myself. -- Matthew Ledom VP of Engineering BrightWhistle Inc. 404.964.8061 http://brightwhistle.com (http://www.brightwhistle.com/) @brightwhistle

Re: Ruby Report Utils 'Missing Client Information' error

2013-12-09 Thread Danial Klimkin
Hello MrHuluBanulu, Please make sure you provide AuthToken (for ClientLogin) and ClientCustomerId in your request. Did you see the demo application example that implements the report download? https://github.com/googleads/google-api-ads-ruby/wiki/AdWords-Rails-Demo -Danial, AdWords API

Re: Ruby Report Utils 'Missing Client Information' error

2013-12-09 Thread MrHuluBanulu
Hey Guys, Thank you for your help! Danial: I did see the example, but I'm not using the API, as I don't know how to utilize it without OAUTH2, which as far as I understand is not relevant for my use case. I tried to drill down, to the get_report_request_headers , but there is an

Re: [0-6495000001321] Re: Ruby Report Utils 'Missing Client Information' error

2013-07-10 Thread Matthew Ledom
Hope this helps. Let me know if you need something else. Request: https://www.google.com/accounts/ClientLogin Data: accountType=GOOGLEEmail=adwordsapi%40brightwhistle.comPasswd=sW4mfWwJh5AHservice=adwords HTTPI executes HTTP POST using the curb adapter Report request to:

Re: [0-6495000001321] Re: Ruby Report Utils 'Missing Client Information' error

2013-07-10 Thread Matthew Ledom
I removed paging and a majority of the fields and received the same error type: 'ReportDownloadError.INVALID_PARAMETER', trigger: 'Missing client information', field path: ''': {:selector= {:fields= [CampaignId, AdGroupId, Id, Criteria, CriteriaType, Impressions,

Re: Ruby Report Utils 'Missing Client Information' error

2013-07-09 Thread Danial Klimkin
This is very strange. Can you share the application code and your configuration file with me over email (Reply to Author link)? -Danial, AdWords API Team. On Tuesday, July 9, 2013 2:59:00 AM UTC+4, Matthew Ledom wrote: I'm sending the clientCustomerId as a string xxx-xxx- and passing it

Re: Ruby Report Utils 'Missing Client Information' error

2013-07-09 Thread Matthew Ledom
Sent, thanks for helping. On Tuesday, July 9, 2013 6:18:47 PM UTC-4, Danial Klimkin wrote: This is very strange. Can you share the application code and your configuration file with me over email (Reply to Author link)? -Danial, AdWords API Team. On Tuesday, July 9, 2013 2:59:00 AM UTC+4,

Ruby Report Utils 'Missing Client Information' error

2013-07-08 Thread Matthew Ledom
I'm trying to download the CRITERIA_PERFORMANCE_REPORT for all the fields that are allowed. I keep receiving the following error: reportDownloadErrorApiErrortypeReportDownloadError.INVALID_PARAMETER/typetriggerMissing client information/triggerfieldPath/fieldPath/ApiError/reportDownloadError

Re: Ruby Report Utils 'Missing Client Information' error

2013-07-08 Thread Danial Klimkin
Hi Matthew, This error means you are not sending the clientCustomerId correctly. How do you pass the account ID to the library? -Danial, AdWords API Team. On Monday, July 8, 2013 10:47:23 PM UTC+4, Matthew Ledom wrote: I'm trying to download the CRITERIA_PERFORMANCE_REPORT for all the

Re: Ruby Report Utils 'Missing Client Information' error

2013-07-08 Thread Matthew Ledom
I'm sending the clientCustomerId as a string xxx-xxx- and passing it in the download_report and download_report_as_file methods. I also have the id set in the headers of the request as clientCustomerId=xxx-xxx-. On Monday, July 8, 2013 4:42:43 PM UTC-4, Danial Klimkin wrote: Hi