如何将自定义参数与保留事件一起发送到 Firebase 分析
Posted
技术标签:
【中文标题】如何将自定义参数与保留事件一起发送到 Firebase 分析【英文标题】:How to send custom parameter along with reserve event to firebase analytics 【发布时间】:2018-11-16 13:08:57 【问题描述】:我可以使用以下方法将自定义参数与自定义事件一起发送到 android 中的 firebase 分析:-
Bundle bundle = new Bundle();
bundle.putString("Action", "Action Perform Android");
bundle.putString("Category", "CustomEvent Android");
bundle.putString("Label", "click me");
firebaseAnalytics.logEvent("Button_clicked", bundle);
上述方法有效,我们可以在 Firebase 控制台上看到此事件。
Here 是一些事件名称是保留的事件,我们不能再次使用此名称将事件发送到 Firebase 分析,如 notification_dismiss
、notification_open
等。这些预定义的事件由 Firebase 自动收集。
现在我想发送一些自定义参数以及上述事件。
例如,当notification_open
事件触发时,我想将通知标题添加为自定义参数以及此事件。我们如何覆盖notification_open
事件或如何在android
中设置通知标题自定义参数以及此事件?
【问题讨论】:
【参考方案1】:无法将自定义参数添加到自动发送的事件中。您必须定义自己的事件来添加这些参数。
完成此操作后,您可以在 BigQuery 中组合标准事件和自定义事件,以便在单个报告中同时获取默认参数和自定义参数。
【讨论】:
如何将超过 10 个文本自定义参数发送到 firebase 分析? 您能告诉我吗,我可以向 Firebase 分析发送 10 多个文本自定义参数吗?以上是关于如何将自定义参数与保留事件一起发送到 Firebase 分析的主要内容,如果未能解决你的问题,请参考以下文章