Cordova上的Windows Phone 8.1移动应用程序中的分析

时间:2016-03-10 08:56:51

标签: windows cordova google-analytics windows-phone-8.1 flurry

我正在努力寻找一种分析工具,可以让我跟踪我在Cordova for Windows Phone 8.1中编写的移动应用的使用频率。你有什么可以推荐的吗?

Flurry似乎没有处理这样的配置,我无法使Google Analytics工作。我尝试使用http://googleanalyticssdk.codeplex.com/,但没有数据上传到我的Google Analytics信息中心。

这是一个企业应用程序,不通过Marketplace分发。

我很感激你的帮助。

1 个答案:

答案 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);
}

有用的链接: