是否可以将 firebase 自定义属性分析设置为数组?

Is possible to set firebase custom properties analytics as array?

我打算为我的应用程序使用 Firebase Analytics。根据 Firebase 文档,可以在此处设置自定义用户属性文档 Android and IOS. Latter one can use the properties to create audiences in Firebase Analytics Dashboard as described here Analytics DashBoard

我想使用用户自定义 属性 作为数组。

例如:

正在将用户 属性 设置为 TagsUserLikes=["hashtagBlue","hashtagRed","hashtagGreen"] 所以后一个我将能够跟踪所有遵循特定标签的用户的受众,这意味着在数组中包含该标签的用户。

因此,稍后在 Analytics 仪表板中,仅定义为 TagsUserLikes="hastagBlue" 的受众将匹配包含此标签 ["hashtagBlue[=37] 的所有用户=]","hashtagRed","hashtagGreen"] 和 ["hashtagBlue","hashtagDogs"],?

Google 分析仪表板(创建受众)是否支持此功能? Google 大查询是否支持此功能?

如果是 我怎样才能做到这一点?

谢谢

尽管理论上您可以在一个用户 属性 值中连接标签列表(并将其用于创建受众),但用户 属性 值的长度限制(36 个字符)可能让这种方法对你不切实际。

或者,您可以使用参数 "tag_name=" 记录 "tag_followed" 等事件,然后您可以创建使用特定 [=17= 记录 tag_followed 的用户的受众群体]值。