*/
public static void printFirstProfile() {
ManagementFeed profilesFeed = getFeed(BASE_URL +
"accounts/~all/webproperties/~all/profiles?max-results=1");
ManagementEntry profile = profilesFeed.getEntries().get(0);
System.out.println("--- Profile Entry ---");
System.out.println("Account ID: " + profile.getProperty("ga:accountId"));
System.out.println("Web Property ID: " + profile.getProperty("ga:webPropertyId"));
System.out.println("Profile ID: " + profile.getProperty("ga:profileId"));
System.out.println("Currency: " + profile.getProperty("ga:currency"));
System.out.println("Timezone: " + profile.getProperty("ga:timezone"));
System.out.println("Table ID: " + profile.getProperty("dxp:tableId"));
}