我正在努力寻找一种分析工具,可以让我跟踪我在Cordova for Windows Phone 8.1中编写的移动应用的使用频率。你有什么可以推荐的吗?
Flurry似乎没有处理这样的配置,我无法使Google Analytics工作。我尝试使用http://googleanalyticssdk.codeplex.com/,但没有数据上传到我的Google Analytics信息中心。
这是一个企业应用程序,不通过Marketplace分发。
我很感激你的帮助。
答案 0 :(得分:1)
你走了:
var TID = 'UA-XXXX';
var GA_ENDPOINT = 'https://www.google-analytics.com/collect';
var cid;
// Should be called after deviceReady
function init() {
cid = device.uuid; // cordova-plugin-device is required
var xhr = new XMLHttpRequest();
var body = 'v=1&t=pageview&tid=' + TID + '&cid=' + cid + '&dp=%2Findex.html';
xhr.open("POST", GA_ENDPOINT, true)
xhr.onreadystatechange = function () {
console.log('asd');
}
xhr.send(body);
}
function sendEvent(category, action, label, value) {
category = category && encodeURIComponent(category);
action = action && encodeURIComponent(action);
label = label && encodeURIComponent(label);
value = value && encodeURIComponent(value);
var xhr = new XMLHttpRequest();
var body = 'v=1&t=event&tid=' + TID + '&cid=' + cid +
'&ec=' + category + '&ea=' + action + '&el=' + label + (value ? '&ev=' + value : '');
xhr.open("POST", GA_ENDPOINT, true);
xhr.send(body);
}
有用的链接: