Re: Reading stats like impressions or total cost with v201309 without downloading a file

2014-02-18 Thread Danial Klimkin
Hello Ed, It is still easy with client libraries though you need to parse the report. This is tradeoff between scripts and real application. Please make sure to use v201309 to avoid extra migrations later. There is no changes in terms of report mechanics between versions. -Danial, AdWords AP

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2014-02-17 Thread Ed Eichman
Hi Danial, > assaf, you can get a report via HTTP request and then it's up to you > whether you want to keep it in memory or save to a file. Most of our client > libraries support both flows. > That's a big step backwards in ease of use. I can't believe that data that is so easy to get via s

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-20 Thread Ace
I mean, in the same format as the standard examples like - DownloadAdHocReport.java using AdWordsUser user = new AdWordsUser(); and not the authentication method and session used in - https://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-20 Thread Ace
Hi, Does anyone have a working example for this? Did you implement reading stats not via report but from the stream directly? Thanks. On Tuesday, November 12, 2013 9:35:12 AM UTC+2, b.ka...@mso-digital.de wrote: > > Hi there, > > with AdWords API i want to get some stats about my campaigns li

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-18 Thread Danial Klimkin
Hello assaf, It should be easy to modify this example to avoid saving to a file. You can read the report directly by using the object returned by response. getInputStream(), just read the report line by line instead of saving to a file. -Danial, AdWords API Team. On Monday, November 18, 201

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-18 Thread assaf
Thank you Danial, I was wondering about an example for the specific implementation of HTTP requests as you suggested for my needs (not actually writing the report data to a file). On Monday, November 18, 2013 10:19:15 AM UTC+2, Danial Klimkin wrote: > > Hello assaf, > > > The Java client libr

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-18 Thread Danial Klimkin
Hello assaf, The Java client library has support for report downloads. Please see this example: https://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReport.java -Danial, AdWords API Team. On Saturda

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-16 Thread assaf
Hi, Can anyone post a link to such an example - using HTTP Request for adwords report in Java ? Thanks. On Thursday, November 14, 2013 11:06:14 AM UTC+2, Danial Klimkin wrote: > > Hello Bastian, assaf, > > > Bastian, please refer to the blog post mentioned above: > > > googleadsdeveloper.bl

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-14 Thread Oliver
API users who now face this challenge of changing their code might be interested in checking the new tool that will help with downloading and persisting such reports: https://groups.google.com/forum/#!topic/adwordsapi-announcements/wZyo-dCbr5U Oliver On Thursday, November 14, 2013 9:06:14 AM U

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-14 Thread Danial Klimkin
Hello Bastian, assaf, Bastian, please refer to the blog post mentioned above: googleadsdeveloper.blogspot.com/2013/10/adwords-api-how-to-migrate-from-stats.html assaf, you can get a report via HTTP request and then it's up to you whether you want to keep it in memory or save to a file. Most

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-13 Thread assaf
*Can some one from adwords please confirm this:* In order to get Campaign/Adgroup/Ad/Keywords stats (impressions/CPC/Cost etc.) a report needs to be generated and written to your file system. If you have a web application that needs this info - the file in the file system must be read for this?

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-12 Thread assaf
I have the same issue. According to this http://googleadsdeveloper.blogspot.co.il/2013/10/adwords-api-how-to-migrate-from-stats.html I don't see a way of avoiding the reports. On Tuesday, November 12, 2013 9:35:12 AM UTC+2, b.ka...@mso-digital.de wrote: > > Hi there, > > with AdWords API i wan

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-12 Thread assaf
I have the same issue. According to this http://googleadsdeveloper.blogspot.co.il/2013/10/adwords-api-how-to-migrate-from-stats.html I don't see a way of avoiding the reports. On Tuesday, November 12, 2013 9:35:12 AM UTC+2, b.ka...@mso-digital.de wrote: > > Hi there, > > with AdWords API i wan

Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-11 Thread b . kanbach
Hi there, with AdWords API i want to get some stats about my campaigns like impressions, costs, clicks, ctr. With older API versions like 201306 it was very easy to get these stats with the type "Stats". In v201309 this type is deprecated. Instead the "ReportDefinitionService" should be used