firebase-analytics

iOS Firebase Analytics : It seems that firebase analytics does not collect user auto-collection information

拟墨画扇 提交于 2020-04-30 10:23:27
问题 My app is currently using google analytics. And try to introduce firebase analytics. We have included the AdSupport.framework in the project as described in the manual to automatically collect user attributes using idfa. However, when the filter is applied in the firebase analytics dashboard console, it appears as if it is not collected. How do I automatically collect user information? Is it just collecting apps downloaded from the App Store? my develop environment: Xcode 9.4.1 Firebase (5.4

How is user_engagement event generated in firebase analytics?

拈花ヽ惹草 提交于 2020-04-12 14:33:12
问题 I have seen a param named firebase_screen_class (along with engagement_time_msec , firebase_event_origin and firebase_screen_id ) in the user_engagement event in bigQuery, it contains the name of activity classes in my app. Please, can you explain this params and how is the user_engagement event generated? I also wonder whether this can be useful to get the quantity of impressions or screen views of the activities in my app. 回答1: The user_engagement event is triggered when a user interacts

How to decrypt Firebase requests to app-measurement.com

混江龙づ霸主 提交于 2020-04-11 03:13:54
问题 We noticed that our iOS app is sending requests to http://app-measurement.com. The body seems to be encrypted or compressed though :method: POST :scheme: https :path: /a :authority: app-measurement.com accept: */* content-type: application/x-www-form-urlencoded content-encoding: gzip accept-language: en-gb content-length: 371 accept-encoding: br, gzip, deflate ; _uwa _pfoq _oauto _r _c_fݶ- ... I already checked if it's gzip but that doesn't seem to be it. Does anyone know how to decrypt this

How to decrypt Firebase requests to app-measurement.com

落花浮王杯 提交于 2020-04-11 03:13:46
问题 We noticed that our iOS app is sending requests to http://app-measurement.com. The body seems to be encrypted or compressed though :method: POST :scheme: https :path: /a :authority: app-measurement.com accept: */* content-type: application/x-www-form-urlencoded content-encoding: gzip accept-language: en-gb content-length: 371 accept-encoding: br, gzip, deflate ; _uwa _pfoq _oauto _r _c_fݶ- ... I already checked if it's gzip but that doesn't seem to be it. Does anyone know how to decrypt this

How to decrypt Firebase requests to app-measurement.com

流过昼夜 提交于 2020-04-11 03:13:34
问题 We noticed that our iOS app is sending requests to http://app-measurement.com. The body seems to be encrypted or compressed though :method: POST :scheme: https :path: /a :authority: app-measurement.com accept: */* content-type: application/x-www-form-urlencoded content-encoding: gzip accept-language: en-gb content-length: 371 accept-encoding: br, gzip, deflate ; _uwa _pfoq _oauto _r _c_fݶ- ... I already checked if it's gzip but that doesn't seem to be it. Does anyone know how to decrypt this

Firebase Google Analytics Console weird behavior. Events are logged but don't show up on User Snapshot

落爺英雄遲暮 提交于 2020-03-05 04:04:31
问题 I'm using Firebase Analytics and I'm still exploring the Google Analytics Console. I think there's something wrong with my data, or the way I'm logging it. I have a Single Page App built with React + Firebase. Since my app is all client side routes, for every page that it renders, I'm firing the following effect to log the screen_view event: useEffect(() => { firebase.analytics().logEvent("screen_view", { screen_name: window.location.pathname, page_title: "My Page Title" }); },[firebase]); So

How to send a page_view event from an SPA (single page app) web app using Firebase Analytics?

戏子无情 提交于 2020-03-05 02:53:47
问题 I have an SPA web app that I've built using React + Firebase. I am now using Firebase Analytics and I would like to log page_view events for pages that are client-side routes (since I have my app is a Single Page App). I didn't find anything about Single Page Apps in Firebase Analytics docs. https://firebase.google.com/docs/analytics/events But I did find something in the gtag.js docs. From: https://developers.google.com/analytics/devguides/collection/gtagjs/single-page-applications From:

How to send a page_view event from an SPA (single page app) web app using Firebase Analytics?

人走茶凉 提交于 2020-03-05 02:53:07
问题 I have an SPA web app that I've built using React + Firebase. I am now using Firebase Analytics and I would like to log page_view events for pages that are client-side routes (since I have my app is a Single Page App). I didn't find anything about Single Page Apps in Firebase Analytics docs. https://firebase.google.com/docs/analytics/events But I did find something in the gtag.js docs. From: https://developers.google.com/analytics/devguides/collection/gtagjs/single-page-applications From:

Get user_pseudo_id from firebase client sdk?

大城市里の小女人 提交于 2020-02-05 06:55:23
问题 In the Firebase Analytics, user_pseudo_id is automatically log into bigquery. But, I want to get this value in the firebase client sdk (ex: android, ios sdk) to specify user. I found on docs of firebase but couldnt found any reference about this issue of my. Have any suggest to get it? Thanks so much! 回答1: I just found it, it is documented here. I also tested that it returns values that I can find in the BigQuery user_pseudo_id column. Example for android: FirebaseAnalytics.getInstance(this)

How to implement and test Firebase Analytics in a React-Native project?

妖精的绣舞 提交于 2020-02-03 06:13:43
问题 I have learned from reading that Firebase officially supports react-native. https://firebase.googleblog.com/2016/01/the-beginners-guide-to-react-native-and_84.html I have followed the above link and performed these steps: npm install firebase --save Opened index.ios.js and imported firebase import * as firebase from 'firebase'; Initialise Firebase const firebaseConfig = { apiKey: "<your-api-key>", authDomain: "<your-auth-domain>", databaseURL: "<your-database-url>", storageBucket: "<your