2010-04-09 68 views

回答

0

看看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() 
+0

好的。但哪一个是网站? – Chez 2010-04-09 15:18:04

+0

更新..使用getTitle()。getPlainText()。 – systempuntoout 2010-04-09 19:44:01