1

Google アナリティクスでは、 AccountEntry からサイトを取得するにはどうすればよいですか?

私がそうするなら、そのように見えます:

  • entry.getProperty("ga:アカウント名")
  • entry.getTitle().getPlainText()

わかった。しかし、これは正しいですか?どこに文書化されていますか?

4

1 に答える 1

0

API から返されたすべてのデータを含むXML アカウント フィード リファレンスを参照してください。すべての重要なアカウント フィード情報にアクセスする 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()
于 2010-04-09T14:40:44.393 に答える