是否有可能使用UiApp作为用户界面将有效的Google Analytics跟踪器插入到网络应用中?
这将为应用所有者提供深入的使用统计信息。
我能想到的唯一可能的替代方案是,在ScriptDb中存储对Web应用程序的每次访问,包括用户ID,从数据隐私角度来看是有问题的,并且不提供有关用户的基本信息,如位置,语言或设备
答案 0 :(得分:3)
是的,它完全可行,我有一个内部库。这个概念是你从谷歌分析服务器Urlfetch一个gif并通过查询字符串传递数据。这是工作代码和测试。 Google Analytics文档参考是内联的:
编辑:我已将下面打包为名为GASAnalytics的库,并将项目密钥“MvzvykyEXRZJoG1Gjj2h1JnHAGDwXQ1CH”添加到更多Google Apps脚本库列表中:https://docs.google.com/spreadsheet/ccc?key=0AhDqyd_bUCmvdGxjNUpGZkFKcmxsekE3VHNWMEh4amc#gid=0
/**
* hits Google Analytics with a "path" you want to track as a pageview
* e.g. track("UA-ABC123-4", "/track/my/event")
*/
function track(propertyId, path) {
//ref https://developers.google.com/analytics/resources/articles/gaTrackingTroubleshooting#gifParameters
//https://developers.google.com/analytics/devguides/collection/other/mobileWebsites
var utmGifLocation = "http://www.google-analytics.com/__utm.gif";
// Construct the gif hit url.
var utmUrl = utmGifLocation + "?" +
"utmwv=4.4sa" +
//"&utmcn=1"+ //added - extra - not required
"&utmn=" + (new Date().getTime())+ //unique - cache buster
"&utmhn=" + 'example.com' +
"&utmr=" + '-' +
"&utmp=" + encodeURIComponent(path) +
"&utmac=" + propertyId +
"&utmcc=__utma%3D999.999.999.999.999.1%3B" +
"&utmvid=" + Math.random() +
"&utmip=" + '-';
Logger.log("Fetching " + utmUrl);
var test = UrlFetchApp.fetch(utmUrl);
return;
}
function testTrack() {
// confirm in GA > Realtime (immediate) or Standard Reports > Content > Content drilldown (after 2 hours)
track("UA-heyuseyourown:/!", "/track1/my1/test1");
}
告诉我们您的情况。