如何使用谷歌分析API获得推荐流程?

时间:2017-08-01 11:01:17

标签: google-analytics google-api google-analytics-api

我有一个节点应用程序。在这里,我尝试使用Google API从谷歌分析中获取推荐流程。我已经提到了维度,指标和其他必需参数。这是我的代码段,

// imported googleapis npm module
import google from "googleapis";
const analytics = google.analytics("v3");

// This is my payload to get the required analytics data
const analyticsData = {
  auth: oauth2Creds,
  accountId: "accountID",
  webPropertyId: "webPropertyID",
  profileId: "profileID",
  ids: "ga:id",
  "start-date": "90daysAgo",
  "end-date": "today",
  metrics: "ga:pageValue,ga:pageviews,ga:entranceRate,ga:exitRate",
  dimensions: "ga:fullReferrer",
  "start-index": "1"
};

// Function to get analytical data using the above payload
analytics.data.ga.get(analyticsData, (err, result) => {

  // I will get the results here
  console.log(result);

});

此处仅返回与入口相关的数据。但我需要为每次推荐访问获取流量。例如,如果用户从谷歌进入主页并转到第2页,第3页并退出网站,那么我需要跟踪此流程。如何使用谷歌分析API完成这项工作?

1 个答案:

答案 0 :(得分:0)

我可能没有直接回答您的问题,但我认为以下文档可能会对您有所帮助。

https://developers.google.com/analytics/devguides/reporting/mcf/v3/