PhoneGap的和谷歌Analytics(分析)不工作(Phonegap and Google A

2019-10-20 06:24发布

我建立与PhoneGap的应用程序,并希望使用谷歌分析。 我安装了这个插件与CLI和执行下面的代码行到我deviceReady事件:

analytics.startTrackerWithId('UA-*******-5');
analytics.trackView('Frontsite');

(我肯定换用我真正的跟踪代码****)。

问题是我没有得到一个error ,所以我认为该插件(或没有),但是应用没有跟踪。 当我走到哪里,我创建了移动的追随性的谷歌分析页面,它不会在实时选项卡显示我的电话(或模拟器)。

Answer 1:

无需使用插件。 您可以通过使用测量协议跟踪ID直接调用谷歌分析API。 它在安卓,IOS,Windows和黑莓正常工作。

var dataform = {};
            dataform.v = 1;
            dataform.tid = "UA-xxxxxxxx-2";
            dataform.cid = "device id";
            dataform.t = "appview";
            dataform.an = "name";
            dataform.av = "0.0.1";
            dataform.cd = "Home Screen";
var url = "http://www.google-analytics.com/collect";
            $.ajax(url, {
                type: "post",
                contentType: "text/plain",
                data: dataform
            })
                    .done(function(result) {
                            alert("success");

                    })
                    .fail(function(error) {
                            alert("fail");

                    });


文章来源: Phonegap and Google Analytics are not working