Firebase Analytics Filter By User ID

后端 未结 3 1895
执笔经年
执笔经年 2021-02-08 10:22

The Firebase Android SDK for analytics provides a method named setUserId(String id), now i enabled firebase logging and every time i called the method setUser

3条回答
  •  忘掉有多难
    2021-02-08 10:36

    I was scratching my head with this issue. Initially, I felt so dumb when I could not find how to use user id for filtering in Firebase analytics dashboard that I am setting with official API setUserId(). When I try to look for answer, I realized that I am not the only one. Finally, this is how I was able to filter events based on user id.


    In Android Code, I set user id using setUserId() method. When I read bigQuery has this property as user_id, I thought to give it a try by adding a new user property in Firebase Dashboard with the hope that it will fetch the reported id.

    And... that worked...Now I can filter new events based on user id.

提交回复
热议问题