return dataList;
}
try {
// Make a request to the Data Feed.
DataFeed dataFeed = analyticsService.getFeed(getDataFeedQuery(), DataFeed.class);
dataList.add(new String[] {"Landing Page", "Entrances", "Bounces", "Bounce Rate"});
// Put the results in a list of String arrays.
for (DataEntry entry : dataFeed.getEntries()) {
// Calculate bounce rate.
bounceRate = entry.doubleValueOf("ga:bounces") / entry.doubleValueOf("ga:entrances") * 100;
dataList.add(new String[] {
entry.stringValueOf("ga:landingPagePath"),