如何以编程方式生成 GA 跟踪代码?

发布于 2024-10-28 03:39:47 字数 83 浏览 0 评论 0原文

如何以编程方式生成 Google Analytics 跟踪代码?

我是 Google Analytics API 的新手,有人可以帮忙吗

How to generate Google Analytics tracking code programmatic-ally?

I am new to Google Analytics API, can someone please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最丧也最甜 2024-11-04 03:39:47

使用现有 API 不可能以编程方式创建新的 Google Analytics(分析)帐户或配置文件。

有两个可用的 API:数据导出 API 和 < a href="http://code.google.com/apis/analytics/docs/mgmt/home.html" rel="noreferrer">管理 API。但是,它们是机器人只读的。

通过 Google Analytics(分析)数据导出 API,您可以开发客户端应用程序以从授权用户的现有 Analytics 配置文件请求数据,并使用查询参数优化请求结果。目前,数据导出 API 支持对 Google Analytics(分析)数据的只读访问

 

目前,管理 API 支持读取- 仅访问 Google Analytics 管理系统的五个组件:帐户数据、个人资料数据、网络媒体资源数据、目标数据、高级细分

It is NOT possible to create new Google Analytics accounts or profiles programmatically using the existing APIs.

There are two APIs available, the Data Export API and the Management API. However, they are bot read-only.

With the Google Analytics Data Export API, you can develop client applications to request data from an existing Analytics profile for an authorized user, and refine the results of the request using query parameters. Currently, the Data Export API supports read-only access to your Google Analytics data.

 

Currently, the Management API supports read-only access to five components of the Google Analytics Management system: Account data,Profile data, Web property data, Goal data, Advanced segments

傻比既视感 2024-11-04 03:39:47

目前无法自动创建 Google Analytics 帐户,但可以生成跟踪代码。

每次为新域创建配置文件时生成的跟踪代码之间唯一真正的差异是网络媒体资源 ID。其格式为 UA-XXXXXXX-X。每个 X 都是一个数字 - 前 7 个数字是帐号,最后一个破折号后面的数字与为该帐户设置的每个网络媒体资源相关。

您可以使用 API 的 accounts feed 来获取帐户及其个人资料的列表。如果一个帐户只有一个配置文件,则可以使用其网络媒体资源 ID 自动生成跟踪代码。但是,如果有多个 Web 属性,那么您需要一种方法来决定使用哪个 Web 属性(向用户提供选择列表等)。

It's not currently possible to create Google Analytics accounts automatically at the moment but generating the tracking code is possible.

The only real variation between the tracking code generated each time you create a profile for a new domain is the web property ID. This is in the format UA-XXXXXXX-X. Each X is a number - the first 7 numbers are the account number and the number after the last dash relates to each web property set up for the account.

You can use the accounts feed of the API to get a list of accounts and their profiles. If an account only has one profile then it's possible to use the web property ID of it to automatically generate the tracking code. However, if there's multiple web properties then you would need a way to decide which one to use (present the user with a selection list etc).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文