Google AdWords Java API:帮助解组临时报告

发布于 2024-12-22 04:20:44 字数 484 浏览 0 评论 0 原文

我正在使用 google-api-adwords-java 下载一些临时 AdWords 报告。

该库帮助我通过以下方式构建请求 xml:

com.google.api.adwords.lib.utils.v201109.ReportUtils.toXml(reportDefinition)

我成功地获得了响应 xml,但我看不到通过 API 将其映射到 java 对象的方法。 API 中是否有任何内容可以帮助我做到这一点,或者这是我必须自己做的事情?

(我目前使用的是adwords-api-8.4.2)

I'm using google-api-adwords-java to download some Ad Hoc AdWords reports.

The library helps me to build the request xml through usage of:

com.google.api.adwords.lib.utils.v201109.ReportUtils.toXml(reportDefinition)

I am successfully able to obtain the response xml, but I see no way through the API to map that to java objects. Is there anything within the API to help me do so or is this something I am going to have to do on my own?

(I am currently using adwords-api-8.4.2)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魂ガ小子 2024-12-29 04:20:44

您必须自行解析 xml,因为报告下载在 AdWords API 中没有相应的 POJO 对象。不过,使用一些基本的 XML 解析代码应该很容易做到。所有报告(以 xml 格式下载时)如下所示:

<report>
  <report-name name="Report name here"/>
    <date-range date="date-range-here"/>
      <table>
        <columns>
          <column name="columnName" display="Display name of column"/>
          ....
        </columns>
        <row columnName="value" columnName="value" .../>
        ....
  </table>
</report>

我还想提一下,我们的主要讨论论坛位于 http://groups.google.com/group/adwords-api?pli=1,我经常在那里回答开发者问题,因此如果您有任何后续问题,请随时在那里询问,我很乐意回答您的问题。

干杯,
阿纳什

You will have to parse the xml on your own, since report downloads don't have corresponding POJO objects in AdWords API. Though, it should be easy to do using some basic XML parsing code. All the reports (when downloaded in xml format) looks like this:

<report>
  <report-name name="Report name here"/>
    <date-range date="date-range-here"/>
      <table>
        <columns>
          <column name="columnName" display="Display name of column"/>
          ....
        </columns>
        <row columnName="value" columnName="value" .../>
        ....
  </table>
</report>

I also wanted to mention that our primary discussion forum is at http://groups.google.com/group/adwords-api?pli=1, and I frequently answer developer questions there, so if you have any followup questions, feel free to ask there and I'll be happy to answer your questions.

Cheers,
Anash

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文