Re: Reading stats from reports, sorting them and displaying them on UI (Without saving to files)

2013-12-04 Thread Takeshi Hagikura (AdWords API Team)
Hi naman, The report result is returned as an InputStream. It doesn't have the method that reads a stream line by line. You need to implement that part to detect a line break. Best, - Takeshi, AdWords API Team On Wednesday, December 4, 2013 11:34:52 PM UTC+9, naman jindal wrote: > > Hi Takeshi,

Re: Reading stats from reports, sorting them and displaying them on UI (Without saving to files)

2013-12-04 Thread naman jindal
Hi Takeshi, Thanks for your reply. I have made a function to sort the report. Now I want to know if there is a way to read the report directly without saving it to file? Forget the sorting part. I just want to read the report without saving it to file. I know one way of using the response objec

Re: Reading stats from reports, sorting them and displaying them on UI (Without saving to files)

2013-12-04 Thread naman jindal
Hi Takeshi, Thanks for your answer. I have made a function that will sort my report. There is one more thing that I want to know. Is there a way to read from the report directly, without actually downloading the csv. I know there is a way to read from the response object as: ReportDownloadRespo

Re: Reading stats from reports, sorting them and displaying them on UI (Without saving to files)

2013-12-03 Thread Takeshi Hagikura (AdWords API Team)
Hi Naman, Reports including SEARCH_QUERY_PERFORMANCE_REPORT don't support ordering. So you need to download the report first in your local, then add sort function by some criteria (like clicks). Does this answer your question? Best, - Takeshi, AdWords API Team On Monday, December 2, 2013 12:0

Reading stats from reports, sorting them and displaying them on UI (Without saving to files)

2013-12-01 Thread naman jindal
Hey Guys, I am using Java Client library for building my API web application. What I want is, to read the data from SEARCH_QUERY_PERFORMANCE_REPORT, sort the data by clicks and display the top 100 results in my target jsp page. It will be really great if anyone can help me out by suggesting the