20

An event detail shows how many users triggered that event and how many times. enter image description here

Is there a way to also see a list of all the users who triggered it and see each user's properties?

Community
  • 1
  • 1
John Sardinha
  • 3,566
  • 6
  • 25
  • 55

3 Answers3

2

You can do it in BigQuery or creating app+web property in Google Analytics and connect it with Firebase. how to see all the users properties in an event detail view

Marcin Milowski
  • 469
  • 4
  • 8
0

You can not filter by user properties. Click on events, select the event you are interested in, and then add a filter and press apply.

enter image description here

Evorlor
  • 7,263
  • 17
  • 70
  • 141
-2

See this for further details on the following code:

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 += " "
        }
        // ...
    }
}
aboger
  • 2,214
  • 6
  • 33
  • 47