访问附加到 Google 分析报告中的事件的参数

问题描述

我在我的 android 应用程序中添加了谷歌分析来记录一些如下事件:

            Bundle params = new Bundle();
            params.putString("user_email",auth.getCurrentUser().getEmail());
            params.putString("Status","Successful reservation");
            mFirebaseAnalytics.logEvent("reservation_button",params);

虽然在简化视图中我可以访问参数“user_email”和“状态”但是当报告进来时我找不到访问这些参数的方法 我想知道这是否可以检索每个事件推送的参数,因为我在其他地方使用不同的参数推送相同的事件

            Bundle params = new Bundle();
            params.putString("user_email","Data missing,reservation not send");
            mFirebaseAnalytics.logEvent("reservation_button",params);

我知道我可以只发送单独的事件,但想检查参数是否可用,就像在 StreamView 之后一样。

StreamView/parameters available Event report/ parameters not available

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)