1
,我如何從AccountEntry獲取網站?,我如何從AccountEntry獲取網站?谷歌分析中的
樣子,如果我做的:
- entry.getProperty。( 「GA:帳戶名」)
- entry.getTitle()getPlainText()
我明白了。但這是正確的嗎? 它在哪裏記錄?
,我如何從AccountEntry獲取網站?,我如何從AccountEntry獲取網站?谷歌分析中的
樣子,如果我做的:
我明白了。但這是正確的嗎? 它在哪裏記錄?
看看XML account feed reference與從API返回的所有數據。
Here訪問所有重要的帳戶供稿信息的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()
好的。但哪一個是網站? – Chez 2010-04-09 15:18:04
更新..使用getTitle()。getPlainText()。 – systempuntoout 2010-04-09 19:44:01