是否有谷歌API通过API创建谷歌分析代码(而不是手动去谷歌网站创建)?
请帮忙...
GA 管理 API 是只读的。您无法通过它创建帐户或配置文件:
Google Analytics(分析)通过管理 API 为开发人员提供对配置数据的访问权限,管理 API 是用于帐户和配置数据的只读 API。
要使用异步方法加载脚本,您可以以编程方式将 ga.js 文件包含在 head 中。这可以通过不同的方式完成,但这是一种常见的方法:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);//<------ Set the account number!
// Add other values
_gaq.push(['_trackPageview']);
_gaq.push(['_setDomainName', 'www.example.com']);
_gaq.push(['_setSiteSpeedSampleRate',5]);
// The the script to the head
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') +
'.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
您可以在加载 gs.js 脚本之前或之后将值推送到 _gaq
变量中。您可以在页面中的任何位置为事件、交易和虚拟网页浏览添加多种跟踪。与从帐户获取的常用脚本无关。您唯一需要的是帐号
请尝试谷歌的文档了解更多详情:
http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html
您无法通过 API 创建 Web 属性 ID。