Firebase分析 - 如何在事件详细信息视图中查看所有用户属性

时间:2017-07-13 15:24:25

标签: android ios firebase analytics firebase-analytics

事件详细信息显示有多少用户触发了该事件以及触发了多少次。 enter image description here

有没有办法看到触发它的所有用户的列表并查看每个用户的属性?

3 个答案:

答案 0 :(得分:0)

您可以在BigQuery中进行操作,也可以在Google Analytics(分析)中创建app + web属性,然后将其与Firebase连接。 how to see all the users properties in an event detail view

答案 1 :(得分:0)

您不能按用户属性进行过滤。单击事件,选择您感兴趣的事件,然后添加过滤器并按Apply。

enter image description here

答案 2 :(得分:-1)

有关以下代码的更多详细信息,请参见this

import FirebaseAuth
func userProperties(){
    let user = Auth.auth().currentUser
    if let user = user {
        // The user's ID, unique to the Firebase project.
        // Do NOT use this value to authenticate with your backend server,
        // if you have one. Use getTokenWithCompletion:completion: instead.
        let uid = user.uid
        let email = user.email
        let photoURL = user.photoURL
        var multiFactorString = "MultiFactor: "
        for info in user.multiFactor.enrolledFactors {
            multiFactorString += info.displayName ?? "[DispayName]"
            multiFactorString += " "
        }
        // ...
    }
}