Firebase - 基于事件参数构建受众
Firebase - building Audiences based on Event Parameters
我很难根据我在自定义 "test_event".
中传递的自定义事件参数在 Firebase 控制台中配置我的受众
下面是 "test_event" 的结构,见 Google BigQuery JSON table -
{
"name": "test_event",
"params": [
{
"key": "aoi_name",
"value": {
"string_value": "update_button",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "firebase_event_origin",
"value": {
"string_value": "app",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "screen_name",
"value": {
"string_value": "main_activity",
"int_value": null,
"float_value": null,
"double_value": null
}
} ]
我想观察的是观众在 "main_activity" 屏幕上点击 "update_button"。基于类似事件,我想创建 Funnels 来观察我的用户流。
问题是每当我创建一个受众时 -
显示没有 activity 并且用户数始终为 0。这不是实现我想要的渠道的正确方法吗?
您的设置看起来不错,它也可能有助于 post 用于记录事件的代码。但是,我认为问题可能只是观众从你创建观众的那一刻开始积累 (docs):
Once created, an audience accumulates users who meet the specified criteria from that point onward.
此外,您可能还认为跟踪不起作用的原因是观众用户数仅在超过 10 个用户时才显示(出于隐私原因):
Number of users in this audience that triggered events.
Due to privacy restrictions, we do not show data for an audience with fewer than 10 users.
(在查看观众时将鼠标悬停在小问号上时取自帮助对话框)
我很难根据我在自定义 "test_event".
中传递的自定义事件参数在 Firebase 控制台中配置我的受众下面是 "test_event" 的结构,见 Google BigQuery JSON table -
{
"name": "test_event",
"params": [
{
"key": "aoi_name",
"value": {
"string_value": "update_button",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "firebase_event_origin",
"value": {
"string_value": "app",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "screen_name",
"value": {
"string_value": "main_activity",
"int_value": null,
"float_value": null,
"double_value": null
}
} ]
我想观察的是观众在 "main_activity" 屏幕上点击 "update_button"。基于类似事件,我想创建 Funnels 来观察我的用户流。
问题是每当我创建一个受众时 -
显示没有 activity 并且用户数始终为 0。这不是实现我想要的渠道的正确方法吗?
您的设置看起来不错,它也可能有助于 post 用于记录事件的代码。但是,我认为问题可能只是观众从你创建观众的那一刻开始积累 (docs):
Once created, an audience accumulates users who meet the specified criteria from that point onward.
此外,您可能还认为跟踪不起作用的原因是观众用户数仅在超过 10 个用户时才显示(出于隐私原因):
Number of users in this audience that triggered events. Due to privacy restrictions, we do not show data for an audience with fewer than 10 users.
(在查看观众时将鼠标悬停在小问号上时取自帮助对话框)