我正在使用这个 ionic 插件从我的 ionic 3 应用程序中收集分析,我能够在分析控制台中获取数据,除了人口统计数据。
根据我设置的文档
this.ga.startTrackerWithId('UA-xxxxxx-x')
.then((res) => {
this.ga.setAllowIDFACollection(true)
.then((res) =>{console.log(res)}) //this returns true
.catch(e=>{console.log(e)})
})
.catch(e => console.log('Error starting GoogleAnalytics == '+ e));
在跟踪器准备就绪并在分析管理中返回承诺值时true
,我启用了启用人口统计和兴趣报告 ,但我仍然没有得到任何数据,这是在开发模式下进行的。
谁能告诉我如何获得这些数据。