从代码嵌入中获取谷歌分析ID?
例如,我必须嵌入的代码具有以下形式的 ID:UA-3235632-1
,但要使用数据导出 API,我需要来自正确页面的 URL 的 ID,位于本例:6270018
。
如何从UA类型ID中获取真实ID?
As an example, the code I have to embed has an ID of the form: UA-3235632-1
, but to use the data export API I need the ID from the URL of the proper page, in this case: 6270018
.
How do I get the real ID from the UA type ID?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GA 数据导出 API 的这一功能确实可以更清晰一些。
您需要执行以下操作:
登录 GA 浏览器并在
右上角下拉菜单
菜单中,选择您的 GA 帐户
兴趣(假设你有更多
比一个——如果你不这样做,那么你就是
已经在右页上)。页面
呈现的将是网站
该帐户的配置文件。找到
该表中对应的行
到您想要的配置文件(报告)
从中检索数据并单击
倒数第二列编辑;
您现在看到的页面会显示
上部的配置文件设置
左角。就在那之下,
以较小的字体,您会看到个人资料
ID 后跟一串数字
(大概六到八个)。这就是你想要的
(在 GA 的 python 客户端中
数据导出API,参考
如 TABLE_ID))。
要以编程方式检索此参数 (TABLE_ID),GA 数据导出 API 帐户 Feed 会在 dxp:tableID 字段中返回该值。特别是,帐户查询将返回您有权访问的帐户下的个人资料列表;每个配置文件在我上面提到的字段中都会有一个 tableID。
That feature of the the GA Data Export API could indeed be a little more clear.
Here's what you need to do:
login to the GA Browser and in the
upper-right-hand corner drop-down
menu, select your GA Account of
interest (assuming you have more
than one--if you don't then you are
already on right page). The page
that renders will be the Website
Profiles for that Account. Find the
row in that table that corresponds
to the Profile (Report) you want
retrieve data from and click on the
next-to-last column Edit;
The page you'll see now will say
Profile Settings in the upper
left-hand corner. Just under that,
in smaller font, you'll see Profile
ID followed by a string of digits
(probably six to eight). This is what you want
(in the python client for the GA
Data Export API, it is referred to
as TABLE_ID)).
To retrieve this parameter (TABLE_ID) programmatically, the GA Data Export API Account Feed returns this value to you in the dxp:tableID field. In particular, an Account Query will return the list of profiles under that Account to which you have access; each Profile will have a tableID in the field i mentioned just above.