没有全局站点标签的我如何使用Google Analytics(分析)?

时间:2019-10-16 00:28:16

标签: google-analytics

我正在构建基于Web的加密钱包,我想跟踪非常基本的信息,例如创建钱包事件。但是,我不想使用跟踪代码,全局站点标记(gtag.js)。有没有办法在不跟踪代码的情况下从我的Web应用程序向分析发送信息? 像这样:

Axios.post(
   "https://analytics.google.com/....", 
   data : {"event" : "new_wallet_created"}
);

1 个答案:

答案 0 :(得分:2)

是的,您可以通过获取请求发送

url: www.google-analytics.com
method: GET
payload:{
 v:1, //this must be 1
 t:pageview, //hit type (pageview , event, social vs vs.)
 tid: UA-XXX, //your tracking id
 cid: xxxx //user id (this is randomly generated)
}

在此处查看参数列表: https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters