在谷歌分析中,我如何从AccountEntry获取该网站?

时间:2010-04-09 14:22:26

标签: java google-analytics-api

在Google Analytics中,如何从AccountEntry获取该网站?

如果我这样做,

就是这样:

  • entry.getProperty( “GA:帐户名”)
  • entry.getTitle()。getPlainText()

我明白了。但这是对的吗? 在哪里记录?

1 个答案:

答案 0 :(得分:0)

使用API​​返回的所有数据查看XML account feed reference Here访问所有重要帐户Feed信息的Java示例:

for (AccountEntry entry : accountFeed.getEntries()) {
    System.out.println(
      "\nWeb Property Id = " + entry.getProperty("ga:webPropertyId") +
      "\nAccount Name    = " + entry.getProperty("ga:accountName") +
      "\nAccount ID      = " + entry.getProperty("ga:accountId") +
      "\nProfile Name    = " + entry.getTitle().getPlainText() +
      "\nProfile ID      = " + entry.getProperty("ga:profileId") +
      "\nTable Id        = " + entry.getTableId().getValue() +
      "\nCurrency        = " + entry.getProperty("ga:currency") +
      "\nTimeZone        = " + entry.getProperty("ga:timezone") +
      (entry.hasCustomVariables() ? "\nThis profile has custom variables" : "") +
      (entry.hasGoals() ? "\nThis profile has goals" : ""));
  }

这是一个示例结果:

Web Property Id = UA-4276604-4
Account Name    = www.mainsite.net
Account ID      = 4246204
Profile Name    = www.systempuntoout.com
Profile ID      = 26084768
Table Id        = ga:26084768
Currency        = USD
TimeZone        = Europe/Rome

使用以下代码按要求获取网站:

entry.getTitle().getPlainText()